mirror of
https://github.com/curl/curl.git
synced 2026-06-13 04:05:37 +03:00
fixup simplify condition
This commit is contained in:
parent
eaae8bc4fd
commit
6f2b4a3abc
1 changed files with 1 additions and 1 deletions
|
|
@ -659,7 +659,7 @@ static void output_header(struct per_transfer *per,
|
|||
const char *end;
|
||||
end = strchr(ptr, '}');
|
||||
do {
|
||||
if(!end || (end && (end[-1] != '\\')))
|
||||
if(!end || (end[-1] != '\\'))
|
||||
break;
|
||||
end = strchr(&end[1], '}');
|
||||
} while(end);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue