Skip to content
Snippets Groups Projects
Commit 0f356be0 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

large object fix

parent 32eef5ad
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.26 1998/06/16 05:50:55 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.27 1998/06/16 06:53:27 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -821,7 +821,7 @@ Pg_lo_read(ClientData cData, Tcl_Interp *interp, int argc, char* argv[])
sprintf(interp->result,"%d",nbytes);
return TCL_OK;
}
buf = ckalloc(sizeof(len+1));
buf = ckalloc(len+1);
nbytes = lo_read(conn,fd,buf,len);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment