summaryrefslogtreecommitdiff
path: root/dviware/dvipng/color.c
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-01-06 03:01:05 +0000
committerNorbert Preining <norbert@preining.info>2020-01-06 03:01:05 +0000
commit9d0c8699c4a9f01ec5cc8aeb7e3b14956b3d51c1 (patch)
tree570162c5a6220ea63dffe4e5471f477e99e77c99 /dviware/dvipng/color.c
parentd703bc2777b69363e791c0ec50045947b1a399da (diff)
CTAN sync 202001060301
Diffstat (limited to 'dviware/dvipng/color.c')
-rw-r--r--dviware/dvipng/color.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dviware/dvipng/color.c b/dviware/dvipng/color.c
index 63fc29c6c5..76cb7004a4 100644
--- a/dviware/dvipng/color.c
+++ b/dviware/dvipng/color.c
@@ -18,7 +18,7 @@
License along with this program. If not, see
<http://www.gnu.org/licenses/>.
- Copyright (C) 2002-2015 Jan-Åke Larsson
+ Copyright (C) 2002-2015,2019 Jan-Åke Larsson
************************************************************************/
@@ -355,7 +355,7 @@ void stringrgb(const char* color,int *r,int *g,int *b)
tmp=tmp->next;
}
}
- if (strcmp(color,tmp->name)==0) {
+ if (tmp!=NULL) {
/* Found: one-level recursion */
DEBUG_PRINT(DEBUG_COLOR,("\n ---RECURSION--- "))
stringrgb(tmp->color,r,g,b);