From: | Marti Raudsepp <marti(at)juffo(dot)org> |
---|---|
To: | pgsql-hackers(at)postgresql(dot)org |
Subject: | [PATCH] Cleanup: Compare pointers to NULL instead of 0 |
Date: | 2010-10-29 16:25:03 |
Message-ID: | AANLkTikaTU8tkwPCAUU8DwVQh3hWVuRbbEQDfrXDBqNW@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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 | Content-Type | Size |
---|---|---|
0001-Cleanup-Compare-pointers-to-NULL-instead-of-0.patch | text/x-patch | 3.6 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2010-10-29 16:53:30 | Re: plan time of MASSIVE partitioning ... |
Previous Message | Tom Lane | 2010-10-29 15:54:52 | Re: crash in plancache with subtransactions |