Browse Source

make type consistent with glob_t.gl_pathc

pull/2401/head
Remi Collet 10 years ago
parent
commit
53a08fd07d
  1. 2
      ext/zip/php_zip.c

2
ext/zip/php_zip.c

@ -499,7 +499,7 @@ int php_zip_glob(char *pattern, int pattern_len, zend_long flags, zval *return_v
char *result;
#endif
glob_t globbuf;
int n;
size_t n;
int ret;
if (pattern_len >= MAXPATHLEN) {

Loading…
Cancel
Save