1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.

This commit is contained in:
Tom Lane
2005-09-24 23:07:18 +00:00
parent 030d5bd942
commit 0df7f493f8
3 changed files with 10 additions and 8 deletions

View File

@ -58,6 +58,8 @@ gettoken(WORKSTATE * state, int4 *val)
char nnn[16],
*curnnn;
*val = 0; /* default result */
curnnn = nnn;
while (1)
{