diff options
author | Nanik Tolaram <nanikjava@gmail.com> | 2015-02-08 12:31:14 +0100 |
---|---|---|
committer | Nanik Tolaram <nanikjava@gmail.com> | 2015-02-08 12:31:14 +0100 |
commit | 4e8e93b6661f4de86c295b76fff82b8815266780 (patch) | |
tree | e1c8501f94120da11578efef343b80679032a699 /minzip/DirUtil.c | |
parent | Merge "There's no GPL code in 'updater'." (diff) | |
download | android_bootable_recovery-4e8e93b6661f4de86c295b76fff82b8815266780.tar android_bootable_recovery-4e8e93b6661f4de86c295b76fff82b8815266780.tar.gz android_bootable_recovery-4e8e93b6661f4de86c295b76fff82b8815266780.tar.bz2 android_bootable_recovery-4e8e93b6661f4de86c295b76fff82b8815266780.tar.lz android_bootable_recovery-4e8e93b6661f4de86c295b76fff82b8815266780.tar.xz android_bootable_recovery-4e8e93b6661f4de86c295b76fff82b8815266780.tar.zst android_bootable_recovery-4e8e93b6661f4de86c295b76fff82b8815266780.zip |
Diffstat (limited to 'minzip/DirUtil.c')
-rw-r--r-- | minzip/DirUtil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/minzip/DirUtil.c b/minzip/DirUtil.c index fe2c880ac..97cb2e0ee 100644 --- a/minzip/DirUtil.c +++ b/minzip/DirUtil.c @@ -85,7 +85,7 @@ dirCreateHierarchy(const char *path, int mode, c--; } if (c == cpath) { -//xxx test this path + //xxx test this path /* No directory component. Act like the path was empty. */ errno = ENOENT; @@ -206,7 +206,7 @@ dirUnlinkHierarchy(const char *path) /* recurse over components */ errno = 0; while ((de = readdir(dir)) != NULL) { -//TODO: don't blow the stack + //TODO: don't blow the stack char dn[PATH_MAX]; if (!strcmp(de->d_name, "..") || !strcmp(de->d_name, ".")) { continue; |