pgsql: Some of our port-specific dynloader implementations are careful - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Some of our port-specific dynloader implementations are careful
Date
Msg-id 20070712211327.BE51B9FB63E@postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Some of our port-specific dynloader implementations are careful to
define pg_dlsym() as returning a PGFunction pointer, not just any
pointer-to-function.  But many are not.  Suppress compiler warnings
on platforms that aren't careful by inserting explicit casts at the
two call sites that didn't have a cast already.  Per Stefan.

Modified Files:
--------------
    pgsql/src/backend/utils/fmgr:
        dfmgr.c (r1.94 -> r1.95)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/fmgr/dfmgr.c.diff?r1=1.94&r2=1.95)

pgsql-committers by date:

Previous
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Compute max and min int8 values using unsigned arithmetic, in
Next
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Suppress an integer-overflow warning.