12345678910111213141516171819 |
- Subject: Fix stray return -1; from glen at delfi dot ee
- Upstream-Author: Christos Zoulas <christos@zoulas.com>
- Date: Tue Feb 26 16:20:42 2013 +0000
- Origin: FILE5_13-1-ga9aef15
- Last-Update: 2015-04-19
- (prequisite for CVE-2014-9653)
- --- a/src/cdf.c
- +++ b/src/cdf.c
- @@ -298,8 +298,6 @@
- if (info->i_fd == -1)
- return -1;
-
- - return -1;
- -
- if (pread(info->i_fd, buf, len, off) != (ssize_t)len)
- return -1;
-
|