Fix last maybe uninit warnings on 7.4

Most of these only occur under GCC 5. Not fond of all the workarounds
(especially the PDO one), but it gets us a clean build...
This commit is contained in:
Nikita Popov 2019-04-15 11:35:13 +02:00
parent 908660c1d7
commit 7f6c22cb3d
7 changed files with 14 additions and 8 deletions

View file

@ -1448,6 +1448,7 @@ static void normalize_vpath(char **retval, size_t *retval_len, const char *vpath
char *p;
*retval = NULL;
*retval_len = 0;
decoded_vpath = pestrndup(vpath, vpath_len, persistent);
if (!decoded_vpath) {