]> granicus.if.org Git - graphviz/commitdiff
gvcolor: remove 'NOCOLORNAMES' code path
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 15 Jan 2023 21:28:12 +0000 (13:28 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 21 Jan 2023 04:48:33 +0000 (20:48 -0800)
Nothing in the build systems define this. Furthermore, this code does not work.
It reads uninitialized memory from `buf`.

cmd/tools/colxlate.c

index a125b2f3a19b9cd534604bdb4ff9dc258ecf322f..48c71518fba6e07a7ab74969bbe2834115576037 100644 (file)
@@ -25,8 +25,6 @@ typedef struct hsbcolor_t {
     unsigned char h, s, b;
 } hsbcolor_t;
 
-
-#ifndef NOCOLORNAMES
 #include "colortbl.h"
 
 static char *canoncolor(const char *orig, char *out)
@@ -76,9 +74,3 @@ char *colorxlate(char *str, char *buf)
                ((double) last->s) / 255, ((double) last->b) / 255);
     return buf;
 }
-#else
-char *colorxlate(char *str, char *buf)
-{
-    return str;
-}
-#endif