Commit 1f8e57e5 authored by Christophe Massiot's avatar Christophe Massiot

* src/misc/strings.c: Missing break; in decode_URI().

parent 9d1504ce
......@@ -155,6 +155,7 @@ void decode_URI( char *psz )
case '+':
*out++ = ' ';
break;
default:
/* Inserting non-ASCII or non-printable characters is unsafe,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment