mirror of
https://github.com/curl/curl.git
synced 2026-06-13 18:15:38 +03:00
tidy-up: drop redundant == NULL syntax
Where missed by checksrc. Closes #21935
This commit is contained in:
parent
59213abfb2
commit
014be82a66
19 changed files with 39 additions and 41 deletions
|
|
@ -73,7 +73,7 @@ static std::string buffer;
|
|||
static size_t writer(char *data, size_t size, size_t nmemb,
|
||||
std::string *writerData)
|
||||
{
|
||||
if(writerData == NULL)
|
||||
if(!writerData)
|
||||
return 0;
|
||||
|
||||
writerData->append(data, size * nmemb);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue