blob: 4b1abadcd18a2a80b5b80b9a4922100e275f6e7e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Description: Add check for NULL pointer
Author: Jörg Frings-Fürst <debian@jff-webhsoting.net>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700253
Forwarded: http://www.freelists.org/post/argyllcms/dispwin-bad-command-line-option-makes-dispwin-segfault
Reviewed-by:
Last-Update: 2014-09-14
--- spectro/dispwin.c.orig 2016-09-28 02:59:10 UTC
+++ spectro/dispwin.c
@@ -6055,6 +6055,7 @@ main(int argc, char *argv[]) {
/* Display number */
else if (argv[fa][1] == 'd') {
+ if(na == NULL) usage(0,"-d parameter missing");
if (strncmp(na,"web",3) == 0
|| strncmp(na,"WEB",3) == 0) {
webdisp = 8080;
|