diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-09-09 08:47:12 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-09-09 08:47:12 +0200 |
commit | 311a42d3c545f079f8a9428c52fbdc73731bdc37 (patch) | |
tree | d41dcf944b969257cd5ed62ccb7166305015a642 /debian/patches/0135-xscanimage_c-out-of-bounds.patch | |
parent | 4a8a70149879404d36ccd39c5983e3a9760af07e (diff) | |
parent | 16a4948c7243ab0e228780b3a2b9aea97900f32a (diff) |
Merge branch 'release/debian/1.0.14-13'debian/1.0.14-13
Diffstat (limited to 'debian/patches/0135-xscanimage_c-out-of-bounds.patch')
-rw-r--r-- | debian/patches/0135-xscanimage_c-out-of-bounds.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/patches/0135-xscanimage_c-out-of-bounds.patch b/debian/patches/0135-xscanimage_c-out-of-bounds.patch new file mode 100644 index 0000000..2249f5a --- /dev/null +++ b/debian/patches/0135-xscanimage_c-out-of-bounds.patch @@ -0,0 +1,18 @@ +Description: Correct out-of-bounds +Author: Jörg Frings-Fürst <debian@jff-webhosting.net> +Last-Update: 2014-12-03 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/src/xscanimage.c +=================================================================== +--- trunk.orig/src/xscanimage.c ++++ trunk/src/xscanimage.c +@@ -1284,7 +1284,7 @@ scan_dialog (GtkWidget * widget, gpointe + { /* We are running in standalone mode */ + /* test for pnm formats */ + strncpy (testfilename, preferences.filename, sizeof (testfilename)); +- testfilename[sizeof (testfilename)] = 0; ++ testfilename[sizeof (testfilename) - 1] = 0; + g_strreverse (testfilename); + if (!((!strncmp (testfilename, "mnp.", 4)) || + (!strncmp (testfilename, "mgp.", 4)) || |