From c6ca60eb2088706781fd227fbd679f6bd117c172 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 1 Jun 2011 03:08:53 -0400 Subject: [PATCH] Fixed infinite loop in zip_expand_symlink_path(). This patch was from Francois Gouget, who found this bug in MojoSetup's copy of the zip archiver code. --- src/archiver_zip.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/archiver_zip.c b/src/archiver_zip.c index 59686daa..6606badd 100644 --- a/src/archiver_zip.c +++ b/src/archiver_zip.c @@ -669,6 +669,7 @@ static void zip_expand_symlink_path(char *path) else { prevptr = ptr; + ptr++; } /* else */ } /* while */ } /* zip_expand_symlink_path */