]> gitweb.ps.run Git - ps-cgit/commit
html: fix strcpy bug in convert_query_hexchar
authorMark Lodato <lodatom@gmail.com>
Sat, 28 Aug 2010 01:02:27 +0000 (21:02 -0400)
committerLars Hjemli <hjemli@gmail.com>
Sun, 29 Aug 2010 15:27:40 +0000 (17:27 +0200)
commit48434780ca62fde84337ea1e797f642de5ca50d5
treead6a67137124a5ae70de10dd29e84bd6bf21c6ea
parentc94414a4c8cd099f5737e8b4066693d07ce78f61
html: fix strcpy bug in convert_query_hexchar

The source and destination strings in strcpy() may not overlap.
Instead, use memmove(), which allows overlap.  This fixes test t0104,
where 'url=foo%2bbar/tree' was being parsed improperly.

Signed-off-by: Mark Lodato <lodatom@gmail.com>
html.c