diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-11-25 15:40:51 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-11-25 15:40:51 -0500 |
commit | 3c0afde11a12bb3ca7c68a30ad0dedaa0d1adef5 (patch) | |
tree | d347ca48eea0b53846e68da64292ef4d30e41b04 /src/bin/pg_dump/dumputils.c | |
parent | 35e27226b6751a90c9c911d08cb47b9f8a58825f (diff) |
Modify pg_dump to use error-free memory allocation macros. This avoids
ignoring errors and call-site error checking.
Diffstat (limited to 'src/bin/pg_dump/dumputils.c')
-rw-r--r-- | src/bin/pg_dump/dumputils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/pg_dump/dumputils.c b/src/bin/pg_dump/dumputils.c index acce7f82fa4..5cc012d9e3c 100644 --- a/src/bin/pg_dump/dumputils.c +++ b/src/bin/pg_dump/dumputils.c @@ -16,6 +16,7 @@ #include <ctype.h> +#include "common.h" #include "dumputils.h" #include "parser/keywords.h" |