Kjetil Haaland <kjetil.haaland@student.uib.no> writes:
> an example:
> Datum alignres_out(PG_FUNCTION_ARGS) {
> char *result;
> elog(NOTICE, "result=%s", result);
> }
This code is wrong on its face. If your compiler doesn't give a warning
along the lines of "use of uninitialized value", get a better compiler.
(Note: when using gcc I think you must specify -O to get this warning.
I always use at least -O -Wall when developing with gcc.)
> This will give me NOTICE: result=alignres_out.
Pure luck that it doesn't crash instead. Apparently you're picking up a
value that happened to be left in a register by the function-call
manager, but on another machine or after any slight mod to fmgr.c that
register might contain something that's not a pointer to string at all.
regards, tom lane