From 77293d9d0a5c31131dbe1a2977d8e8a71fc8d6e2 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 12 Jun 2011 16:22:04 +0000 Subject: [PATCH] Fix another error related to whitespace handling in archives. Commit b06b8c64a29a5ba3a8daecd829fa2f98d42cb285 upstream. See also https://savannah.gnu.org/bugs/?30612 --- read.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/read.c b/read.c index a3ad88e4730f..3452a610f070 100644 --- a/read.c +++ b/read.c @@ -3046,16 +3046,16 @@ parse_file_seq (char **stringp, unsigned int size, int stopchar, nlen -= (n + 1) - tp; tp = n + 1; - /* If we have just "lib(", part of something like - "lib( a b)", go to the next item. */ - if (! nlen) - continue; - /* We can stop looking now. */ break; } } while (*e != '\0'); + + /* If we have just "lib(", part of something like "lib( a b)", + go to the next item. */ + if (! nlen) + continue; } } -- 1.8.4.4