diff options
author | Felipe Pena <felipe@php.net> | 2008-11-12 17:50:37 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-11-12 17:50:37 +0000 |
commit | 1bedb57dd4286d308580b3afb5d4be6af4ec67f1 (patch) | |
tree | d6f8140cc9ffa1d451e2bad9f7df7f82b5675d6e /ext/zip/php_zip.c | |
parent | c18fd01775b3ad10e7ad937216aff87f70d28b35 (diff) | |
download | php-git-1bedb57dd4286d308580b3afb5d4be6af4ec67f1.tar.gz |
- MFH: Removed unused variables
Diffstat (limited to 'ext/zip/php_zip.c')
-rw-r--r-- | ext/zip/php_zip.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index 0c7f5c7985..c3514cd330 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -90,9 +90,6 @@ static int le_zip_entry; static char * php_zip_make_relative_path(char *path, int path_len) /* {{{ */ { char *path_begin = path; - int prev_is_slash = 0; - char *e = path + path_len - 1; - size_t pos = path_len - 1; size_t i; if (IS_SLASH(path[0])) { |