We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8886fc6 commit c4b544fCopy full SHA for c4b544f
src/burp/burp.cpp
@@ -1994,7 +1994,7 @@ static SLONG get_number( const SCHAR* string)
1994
SCHAR c;
1995
SLONG value = 0;
1996
1997
- for (const SCHAR* p = string; c = *p++;)
+ for (const SCHAR* p = string; (c = *p++);)
1998
{
1999
if (c < '0' || c > '9')
2000
return 0;
@@ -2612,7 +2612,7 @@ static ULONG get_size(const SCHAR* string, burp_fil* file)
2612
bool digit = false;
2613
2614
file->fil_size_code = size_n;
2615
- for (const SCHAR *num = string; c = *num++;)
+ for (const SCHAR *num = string; (c = *num++);)
2616
2617
if (isdigit(c))
2618
0 commit comments