mirror of
https://github.com/curl/curl.git
synced 2026-07-08 16:07:15 +03:00
tool_paramhlp: remove duplicate assign
Spotted by CodeSonar Closes #13433
This commit is contained in:
parent
8a5fe04c7b
commit
cf337d851a
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ static size_t memcrlf(char *orig,
|
|||
if we count non-CRLF */
|
||||
size_t max)
|
||||
{
|
||||
char *ptr = orig;
|
||||
char *ptr;
|
||||
size_t total = max;
|
||||
for(ptr = orig; max; max--, ptr++) {
|
||||
bool crlf = ISCRLF(*ptr);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue