diff options
author | Daniel Brahneborg <basic@chello.se> | 2002-03-03 22:02:40 +0000 |
---|---|---|
committer | Daniel Brahneborg <basic@chello.se> | 2002-03-03 22:02:40 +0000 |
commit | a4dcb0ecf632832258ebb523c6bc39b7b94f8775 (patch) | |
tree | 18cf38bb6ecd95671401414c2ba8381b6c90132f /lib/sisfilerecord.h | |
parent | d92c2abcca7d9270f49cbfb09a27bfda86642c31 (diff) | |
download | plptools-a4dcb0ecf632832258ebb523c6bc39b7b94f8775.tar.gz plptools-a4dcb0ecf632832258ebb523c6bc39b7b94f8775.tar.bz2 plptools-a4dcb0ecf632832258ebb523c6bc39b7b94f8775.zip |
Add buffer overflow checks to handle truncated and corrupted sis files.
Diffstat (limited to 'lib/sisfilerecord.h')
-rw-r--r-- | lib/sisfilerecord.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sisfilerecord.h b/lib/sisfilerecord.h index d37d64e..ae99836 100644 --- a/lib/sisfilerecord.h +++ b/lib/sisfilerecord.h @@ -25,6 +25,8 @@ #include "sistypes.h" +#include <sys/types.h> + class SISFile; /** @@ -40,7 +42,7 @@ public: /** * Populate the fields. */ - void fillFrom(uchar* buf, int* base, SISFile* sisFile); + SisRC fillFrom(uchar* buf, int* base, off_t len, SISFile* sisFile); /** * 1 if multiple language versions, otherwise 0. |