X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdictionary.c;h=2dd1dfc4641108a08deb9b3e054acb7e872e53da;hb=8ef8acb7c70a321963d30f2264e8f91e16427fcf;hp=b5b6cca58f19bbf1732eae911379f0d4606caf3f;hpb=ef35211c05259417e4f3dd4a7de44e92e4bc54a3;p=pspp-builds.git diff --git a/src/data/dictionary.c b/src/data/dictionary.c index b5b6cca5..2dd1dfc4 100644 --- a/src/data/dictionary.c +++ b/src/data/dictionary.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2006, 2007, 2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -79,7 +79,7 @@ void dict_set_encoding (struct dictionary *d, const char *enc) { if (enc) - d->encoding = strdup (enc); + d->encoding = xstrdup (enc); } const char * @@ -213,7 +213,7 @@ dict_clone (const struct dictionary *s) d->vector[i] = vector_clone (s->vector[i], s, d); if ( s->encoding) - d->encoding = strdup (s->encoding); + d->encoding = xstrdup (s->encoding); dict_set_attributes (d, dict_get_attributes (s));