From 647867b6e4eaa82644e61c21bd3c039a9902b3dd Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 1 Jun 2011 03:14:11 -0400 Subject: [PATCH] Backport from dev branch: infinite loop in zip_expand_symlink_path(). --- archivers/zip.c | 1 + 1 file changed, 1 insertion(+) diff --git a/archivers/zip.c b/archivers/zip.c index b546df2..0b6297c 100644 --- a/archivers/zip.c +++ b/archivers/zip.c @@ -628,6 +628,7 @@ static void zip_expand_symlink_path(char *path) else { prevptr = ptr; + ptr++; } /* else */ } /* while */ } /* zip_expand_symlink_path */