pgsql: Fix combo_decrypt() to throw an error for zero-length input when - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Fix combo_decrypt() to throw an error for zero-length input when
Date
Msg-id 20070823161605.8EDBF7541FB@cvs.postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Fix combo_decrypt() to throw an error for zero-length input when using a
padded encryption scheme.  Formerly it would try to access res[(unsigned) -1],
which resulted in core dumps on 64-bit machines, and was certainly trouble
waiting to happen on 32-bit machines (though in at least the known case
it was harmless because that byte would be overwritten after return).
Per report from Ken Colson; fix by Marko Kreen.

Tags:
----
REL8_1_STABLE

Modified Files:
--------------
    pgsql/contrib/pgcrypto:
        px.c (r1.15 -> r1.15.2.1)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/pgcrypto/px.c?r1=1.15&r2=1.15.2.1)
        px.h (r1.16 -> r1.16.2.1)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/pgcrypto/px.h?r1=1.16&r2=1.16.2.1)

pgsql-committers by date:

Previous
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Fix combo_decrypt() to throw an error for zero-length input when
Next
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Fix combo_decrypt() to throw an error for zero-length input when