From c8ec2bfa7b4d47a8e20cc311fd577002474b15c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 14 Sep 2014 12:26:48 +0200 Subject: some bug work --- debian/patches/110_dispwin_segfault.patch | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 debian/patches/110_dispwin_segfault.patch (limited to 'debian/patches/110_dispwin_segfault.patch') diff --git a/debian/patches/110_dispwin_segfault.patch b/debian/patches/110_dispwin_segfault.patch new file mode 100644 index 0000000..e08e924 --- /dev/null +++ b/debian/patches/110_dispwin_segfault.patch @@ -0,0 +1,20 @@ +Description: Add check for NULL pointer +Author: Jörg Frings-Fürst +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700253 +Forwarded: Yes, to ML +Reviewed-by: +Last-Update: 2014-09-10 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/spectro/dispwin.c +=================================================================== +--- trunk.orig/spectro/dispwin.c 2014-09-10 16:05:36.633175564 +0200 ++++ trunk/spectro/dispwin.c 2014-09-10 16:06:16.781967935 +0200 +@@ -5493,6 +5493,7 @@ + + /* Display number */ + else if (argv[fa][1] == 'd') { ++ if(na == NULL) usage("-d parameter missing"); + if (strncmp(na,"web",3) == 0 + || strncmp(na,"WEB",3) == 0) { + webdisp = 8080; -- cgit v1.2.3