Skip to content

Commit d5566fb

Browse files
committed
Add missing initialization in tokenize_expand_file() for output list
This should have been added in efc9816, but it looks like I have found a way to mess up a bit a patch split. This should have no consequence in practice, but let's be clean. Discussion: https://postgr.es/m/Y324HvGKiWxW2yxe@paquier.xyz
1 parent efc9816 commit d5566fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/libpq/hba.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ tokenize_expand_file(List *tokens,
489489
{
490490
char *inc_fullname;
491491
FILE *inc_file;
492-
List *inc_lines;
492+
List *inc_lines = NIL;
493493
ListCell *inc_line;
494494

495495
inc_fullname = AbsoluteConfigLocation(inc_filename, outer_filename);

0 commit comments

Comments
 (0)