[PATCH] Cleanup: Compare pointers to NULL instead of 0 - Mailing list pgsql-hackers

From Marti Raudsepp
Subject [PATCH] Cleanup: Compare pointers to NULL instead of 0
Date
Msg-id AANLkTikaTU8tkwPCAUU8DwVQh3hWVuRbbEQDfrXDBqNW@mail.gmail.com
Whole thread Raw
Responses Re: [PATCH] Cleanup: Compare pointers to NULL instead of 0
Re: [PATCH] Cleanup: Compare pointers to NULL instead of 0
List pgsql-hackers
Coccinelle found a few places in the code where pointer expressions
were compared to 0. I have changed them to NULL instead.

There was one line that I didn't dare to touch, which looks like a
false positive.

src/backend/regex/regc_lex.c:849:
if (v->now - save == 0 || ((int) c > 0 && (int) c <= v->nsubexp))

I couldn't find the definition of v (struct vars) anywhere. Is it
comparing two pointers here? Should it be "v->now == save" instead?

But this code doesn't originate from PostgreSQL, so maybe it's not
worth making cleanups here.

Regards,
Marti

Attachment

pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: crash in plancache with subtransactions
Next
From: Tom Lane
Date:
Subject: Re: plan time of MASSIVE partitioning ...