From e826c143d3e9d21485f72c5490b2a907c936024e Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 9 Jun 2011 13:41:08 -0500 Subject: Kill all remaining 'PATH_MAX + 1' usages The few remaining instances were utilized for buffers in calls to snprintf() and realpath(). Both of these functions will always ensure the returned value is padded with '\0', so there is no need for the extra byte. Signed-off-by: Dan McGee --- src/pacman/conf.c | 2 +- src/pacman/query.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/pacman/conf.c b/src/pacman/conf.c index b16be044..512eade0 100644 --- a/src/pacman/conf.c +++ b/src/pacman/conf.c @@ -512,7 +512,7 @@ static int _parseconfig(const char *file, int parse_options, char **section, pmdb_t *db) { FILE *fp = NULL; - char line[PATH_MAX+1]; + char line[PATH_MAX]; int linenum = 0; char *ptr; int ret = 0; diff --git a/src/pacman/query.c b/src/pacman/query.c index d1105b4a..9e81e26d 100644 --- a/src/pacman/query.c +++ b/src/pacman/query.c @@ -40,7 +40,7 @@ static char *resolve_path(const char *file) { char *str = NULL; - str = calloc(PATH_MAX + 1, sizeof(char)); + str = calloc(PATH_MAX, sizeof(char)); if(!str) { return NULL; } -- cgit v1.2.3-24-g4f1b