Fix CID 1353779

This commit is contained in:
Anton Kochkov 2016-04-05 11:50:53 +03:00
parent 769b1593a4
commit 9904f6ae3b

View File

@ -204,7 +204,7 @@ R_API RBuffer *r_buf_new_slurp (const char *file) {
}
R_API int r_buf_seek (RBuffer *b, st64 addr, int whence) {
ut64 min, max = 0LL;
ut64 min = 0LL, max = 0LL;
if (b->fd != -1) {
r_sandbox_lseek (b->fd, addr, whence);
} else if (b->sparse) {