Add "x" prefix to calls to plain malloc(), calloc(), strdup(), realloc().
authorBen Pfaff <blp@gnu.org>
Wed, 8 Apr 2009 04:02:14 +0000 (21:02 -0700)
committerBen Pfaff <blp@gnu.org>
Wed, 8 Apr 2009 04:02:14 +0000 (21:02 -0700)
commit8ef8acb7c70a321963d30f2264e8f91e16427fcf
treeeb368d0e3c49f93137971f82c51ec87cae0892a6
parentef35211c05259417e4f3dd4a7de44e92e4bc54a3
Add "x" prefix to calls to plain malloc(), calloc(), strdup(), realloc().

In review commit 503f53bfdde "Read dictionary encoding from data files"
I noticed uses of plain strdup() (not xstrdup()).  Some greps showed that
there were several other uses of strdup(), as well as calloc(), malloc(),
and realloc(), in the source tree.  This commit adds "x" prefixes to each
of them, to ensure proper error handling.
17 files changed:
src/data/dictionary.c
src/data/gnumeric-reader.c
src/data/sys-file-reader.c
src/language/data-io/get-data.c
src/language/stats/t-test.q
src/libpspp/hmap.c
src/libpspp/i18n.c
src/libpspp/message.c
src/ui/gui/helper.c
src/ui/gui/psppire-syntax-window.c
src/ui/gui/psppire-window.c
src/ui/gui/psppire.c
src/ui/gui/recode-dialog.c
src/ui/gui/select-cases-dialog.c
src/ui/gui/t-test-independent-samples-dialog.c
src/ui/gui/widget-io.c
tests/dissect-sysfile.c