Browse Source

- Fix zzip_entry_read

experimental/new_ui_api
Derick Rethans 25 years ago
parent
commit
d449021900
  1. 2
      ext/zip/zip.c

2
ext/zip/zip.c

@ -285,7 +285,7 @@ PHP_FUNCTION(zip_entry_read)
if (ret == 0) {
RETURN_FALSE;
} else {
RETURN_STRINGL(buf, len, 0);
RETURN_STRINGL(buf, ret, 0);
}
}
/* }}} */

Loading…
Cancel
Save