From 1f8e57e56a742e99d643e9e75c2298972a7d2bf3 Mon Sep 17 00:00:00 2001 From: Christophe Massiot Date: Fri, 7 Apr 2006 17:58:56 +0000 Subject: [PATCH] * src/misc/strings.c: Missing break; in decode_URI(). --- src/misc/strings.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/misc/strings.c b/src/misc/strings.c index a0b17d1f53..8c53caecb1 100644 --- a/src/misc/strings.c +++ b/src/misc/strings.c @@ -155,6 +155,7 @@ void decode_URI( char *psz ) case '+': *out++ = ' '; + break; default: /* Inserting non-ASCII or non-printable characters is unsafe, -- 2.39.5