• Tom Lane's avatar
    Avoid improbable null pointer dereference in pgpassfileWarning(). · 8ac0365c
    Tom Lane authored
    Coverity complained that we might pass a null pointer to strcmp()
    if PQresultErrorField were to return NULL.  That shouldn't be possible,
    since the server is supposed to always provide some SQLSTATE or other
    in an error message.  But we usually defend against such hazards, and
    it only takes a little more code to do so here.
    
    There's no good reason to think this is a live bug, so no back-patch.
    8ac0365c
fe-connect.c 156 KB