forked from lijiext/lammps
avoid segfault
This commit is contained in:
parent
64a4bf6a42
commit
a87c7a4a53
|
@ -1466,10 +1466,12 @@ double *Image::color2rgb(const char *color, int index)
|
||||||
return userrgb[-index-1];
|
return userrgb[-index-1];
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < ncolors; i++)
|
if (color) {
|
||||||
if (strcmp(color,username[i]) == 0) return userrgb[i];
|
for (int i = 0; i < ncolors; i++)
|
||||||
for (int i = 0; i < NCOLORS; i++)
|
if (strcmp(color,username[i]) == 0) return userrgb[i];
|
||||||
if (strcmp(color,name[i]) == 0) return rgb[i];
|
for (int i = 0; i < NCOLORS; i++)
|
||||||
|
if (strcmp(color,name[i]) == 0) return rgb[i];
|
||||||
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue