about summary refs log tree commit diff
path: root/lib/libppmcolor.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-10-02 15:10:58 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-10-02 15:10:58 +0000
commit2dcdf7b8850b6435cd6339f6c77a2e83f52b76f3 (patch)
treee994502a31e93005521a4d058481741fd6b7cf33 /lib/libppmcolor.c
parent78d7ff61d197ed876cc6e0c31611d8ddcf2a1fe1 (diff)
downloadnetpbm-mirror-2dcdf7b8850b6435cd6339f6c77a2e83f52b76f3.tar.gz
netpbm-mirror-2dcdf7b8850b6435cd6339f6c77a2e83f52b76f3.tar.xz
netpbm-mirror-2dcdf7b8850b6435cd6339f6c77a2e83f52b76f3.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3372 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib/libppmcolor.c')
-rw-r--r--lib/libppmcolor.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/libppmcolor.c b/lib/libppmcolor.c
index 27340d5f..7079482c 100644
--- a/lib/libppmcolor.c
+++ b/lib/libppmcolor.c
@@ -9,10 +9,6 @@
 ** implied warranty.
 */
 
-#define _DEFAULT_SOURCE 1  /* New name for SVID & BSD source defines */
-#define _BSD_SOURCE 1      /* Make sure strdup() is in string.h */
-#define _XOPEN_SOURCE 500  /* Make sure strdup() is in string.h */
-
 #include <assert.h>
 #include <stdlib.h>
 #include <string.h>
@@ -194,9 +190,9 @@ processColorfileEntry(struct colorfile_entry const ce,
             *errorP = NULL;
         } else {
             ppm_addtocolorhash(cht, &color, *colornameIndexP);
-            colornames[*colornameIndexP] = strdup(ce.colorname);
+            colornames[*colornameIndexP] = pm_strdup(ce.colorname);
             colors[*colornameIndexP] = color;
-            if (colornames[*colornameIndexP] == NULL)
+            if (colornames[*colornameIndexP] == pm_strsol)
                 pm_asprintf(errorP, "Unable to allocate space for color name");
             else {
                 *errorP = NULL;