blob: 2b6c173f0bf32ed1ce08d9249b4314c3c8f8382f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
From 879a63ac5f0ffdbe7350ccc7438692a6669d26f2 Mon Sep 17 00:00:00 2001
From: Peter Ross <pross@xvid.org>
Date: Sat, 22 Feb 2014 22:50:54 +1100
Subject: [PATCH] vbindiff: prevent segfault when comparing files of different
length
---
vbindiff.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/vbindiff.cpp b/vbindiff.cpp
index 116a037..a032bc6 100644
--- a/vbindiff.cpp
+++ b/vbindiff.cpp
@@ -487,6 +487,8 @@ void FileDisplay::display()
buf[index++] = displayTable[data->line[i][j]];
}
+ if (index < 0)
+ index = 0;
memset(buf + index, ' ', sizeof(buf) - index - 1);
memset(str, ' ', screenWidth - (str - buf2));
--
1.8.3.2
|