pgsql-server/src/bin/psql command.c common.c c ... - Mailing list pgsql-committers

From neilc@svr1.postgresql.org (Neil Conway)
Subject pgsql-server/src/bin/psql command.c common.c c ...
Date
Msg-id 20040124193850.4D332D1E97E@svr1.postgresql.org
Whole thread Raw
List pgsql-committers
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    neilc@svr1.postgresql.org    04/01/24 15:38:50

Modified files:
    src/bin/psql   : command.c common.c common.h copy.c describe.c
                     input.c mainloop.c print.c prompt.c startup.c
                     stringutils.c tab-complete.c variables.c

Log message:
    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().


pgsql-committers by date:

Previous
From: dennis@svr1.postgresql.org (Dennis Bjorklund)
Date:
Subject: pgsql-server/src/backend/po sv.po
Next
From: wieck@svr1.postgresql.org (Jan Wieck)
Date:
Subject: pgsql-server/src backend/storage/buffer/bufmgr ...