On Thu, Jan 09, 2003 at 04:50:56PM -0500, Ron Peterson wrote:

>     colindices = (int *) malloc (ncols * sizeof (int));

Of course we should verify that malloc succeeded...

if (colindices == NULL) {
        elog (ERROR, "noupcol: malloc failed\n");
        SPI_finish();
        return PointerGetDatum (NULL);
}

-- 
Ron Peterson                          -o)
Network & Systems Manager             /\\
Mount Holyoke College                _\_v
http://www.mtholyoke.edu/~rpeterso   ---- 

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly

Reply via email to