]> granicus.if.org Git - postgresql/commit
This patch makes some of the memory manipulation performed by psql a
authorNeil Conway <neilc@samurai.com>
Sat, 24 Jan 2004 19:38:49 +0000 (19:38 +0000)
committerNeil Conway <neilc@samurai.com>
Sat, 24 Jan 2004 19:38:49 +0000 (19:38 +0000)
commit610d33c1949005e9658863441f31083f9f3ceb9b
tree861eb9dfec8dc43b4f5716f48aa52d4468128a90
parentcb3dc829f639801219aab4ec35e53ef924ce75c5
This patch makes some of the memory manipulation performed by psql a
little more sane. Some parts of the code was using a static function
xmalloc() that did safe memory allocation (where "safe" means "bail
out on OOM"), but most of it was just invoking calloc() or malloc()
directly. Now almost everything invokes xmalloc() or xcalloc().
13 files changed:
src/bin/psql/command.c
src/bin/psql/common.c
src/bin/psql/common.h
src/bin/psql/copy.c
src/bin/psql/describe.c
src/bin/psql/input.c
src/bin/psql/mainloop.c
src/bin/psql/print.c
src/bin/psql/prompt.c
src/bin/psql/startup.c
src/bin/psql/stringutils.c
src/bin/psql/tab-complete.c
src/bin/psql/variables.c