diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-12-14 12:35:00 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-12-18 16:34:03 +1000 |
commit | 16259d728e87c10533cd24f88aa7127fff48db2b (patch) | |
tree | 75d2c77b5081235445f47cb50d3b32693c523e5a /src | |
parent | 0cd174efd5065dca26fcce180d853fe6323d3e12 (diff) | |
download | pacman-16259d728e87c10533cd24f88aa7127fff48db2b.tar.xz |
shut up GCC on -Wmaybe-initialized warnings
Admittedly, these are totally bogus, but a clean build is a happy build.
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/conf.c | 2 | ||||
-rw-r--r-- | src/pacman/pacman.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/pacman/conf.c b/src/pacman/conf.c index 5028284d..873ca0ee 100644 --- a/src/pacman/conf.c +++ b/src/pacman/conf.c @@ -459,7 +459,7 @@ static int process_cleanmethods(alpm_list_t *values, static void setrepeatingoption(char *ptr, const char *option, alpm_list_t **list) { - char *val, *saveptr; + char *val, *saveptr = NULL; val = strtok_r(ptr, " ", &saveptr); while(val) { diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index f43105ab..6f05c68c 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -341,8 +341,7 @@ static void invalid_opt(int used, const char *opt1, const char *opt2) static int parsearg_util_addlist(alpm_list_t **list) { - char *i, *save; - + char *i, *save = NULL; for(i = strtok_r(optarg, ",", &save); i; i = strtok_r(NULL, ",", &save)) { *list = alpm_list_add(*list, strdup(i)); |