1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Silence compiler warning about uninitialized variable.

This commit is contained in:
Tom Lane
2012-03-27 14:47:23 -04:00
parent dd024c22f1
commit 98316e211b

View File

@ -40,7 +40,7 @@ exec_prog(bool throw_error, bool is_priv,
va_list args;
int result;
char cmd[MAXPGPATH];
mode_t old_umask;
mode_t old_umask = 0;
if (is_priv)
old_umask = umask(S_IRWXG | S_IRWXO);