diff options
author | 2013-01-11 07:32:46 +0000 | |
---|---|---|
committer | 2013-01-11 07:32:46 +0000 | |
commit | 0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch) | |
tree | 234109de1123b13f217494af4b3f8efad346d5cc /src/lib/util/zippath.c | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/lib/util/zippath.c')
-rw-r--r-- | src/lib/util/zippath.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/util/zippath.c b/src/lib/util/zippath.c index 3f7d62ba2c3..c8c7fdee219 100644 --- a/src/lib/util/zippath.c +++ b/src/lib/util/zippath.c @@ -32,10 +32,10 @@ class zippath_directory public: zippath_directory() : returned_parent(false), - directory(NULL), - called_zip_first(false), - zipfile(NULL), - returned_dirlist(NULL) { } + directory(NULL), + called_zip_first(false), + zipfile(NULL), + returned_dirlist(NULL) { } /* common */ bool returned_parent; @@ -481,9 +481,9 @@ static const zip_file_header *zippath_find_sub_path(zip_file *zipfile, const cha i = 0; j = 0; last_char = '/'; - while(((c1 = next_path_char(header->filename, &i)) == (c2 = next_path_char(subpath, &j))) && - ( c1 != '\0' && c2 != '\0' )) - last_char = c2; + while(((c1 = next_path_char(header->filename, &i)) == (c2 = next_path_char(subpath, &j))) && + ( c1 != '\0' && c2 != '\0' )) + last_char = c2; if (c2 == '\0') |