Re: [PATCH] Cleanup: Compare pointers to NULL instead of 0

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [PATCH] Cleanup: Compare pointers to NULL instead of 0
Дата
Msg-id 7921.1288382348@sss.pgh.pa.us
обсуждение исходный текст
Ответ на [PATCH] Cleanup: Compare pointers to NULL instead of 0  (Marti Raudsepp <marti@juffo.org>)
Список pgsql-hackers
Marti Raudsepp <marti@juffo.org> writes:
> Coccinelle found a few places in the code where pointer expressions
> were compared to 0. I have changed them to NULL instead.

Applied, thanks!

> 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))

Hmm.  I think this is a false positive in the tool: the difference
between two pointers is an integer, not a pointer, so comparison
to an integer is the semantically correct thing to do --- in fact,
I'd argue that s/0/NULL/ ought to lead to a warning here.

However, by the same token, the code overspecifies the computation.
We don't really need to compute the pointer difference, just compare
the pointers for equality.  If it were all integer arithmetic I'd
expect the compiler to figure that out, but given the type issues
maybe not.  So I changed it to v->now == save as you suggest.  The
only advantage of the previous coding would be if we wanted to change
the test to check for some other number of characters consumed, which
seems mighty unlikely.

> I couldn't find the definition of v (struct vars) anywhere.

It's near the head of regcomp.c.

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

Well, neither is zic, but we still have to look at the warnings.
        regards, tom lane


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Selena Deckelmann
Дата:
Сообщение: Tasks for Google Code-In
Следующее
От: Leonardo Francalanci
Дата:
Сообщение: Re: plan time of MASSIVE partitioning ...