Skip to content
This repository has been archived by the owner on Jun 30, 2021. It is now read-only.

Commit

Permalink
[unescape_string] do not set *out to NULL (reported by @ripulpatel)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFrench committed Aug 4, 2018
1 parent 845c193 commit 606f3e3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion evhtp.c
Original file line number Diff line number Diff line change
Expand Up @@ -3280,7 +3280,6 @@ evhtp_unescape_string(unsigned char ** out, unsigned char * str, size_t str_len)
optr = *out;
sptr = str;
d = 0;
*out = NULL;

for (i = 0; i < str_len; i++) {
ch = *sptr++;
Expand Down

0 comments on commit 606f3e3

Please sign in to comment.