blob: 8a767a5a8bfc9244fd86bba64a16ce7f4600e7da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- libdw/dwarf_getsrclines.c.orig 2015-06-10 19:44:33 UTC
+++ libdw/dwarf_getsrclines.c
@@ -188,7 +188,7 @@ read_srclines (Dwarf *dbg,
/* Remember array with the standard opcode length (-1 to account for
the opcode with value zero not being mentioned). */
const uint8_t *standard_opcode_lengths = linep - 1;
- if (unlikely (lineendp - linep < opcode_base - 1))
+ if (unlikely (lineendp - linep < (ptrdiff_t)opcode_base - 1))
goto invalid_data;
linep += opcode_base - 1;
|