projects
/
users
/
c2main
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32eef5a
)
large object fix
author
Bruce Momjian
<bruce@momjian.us>
Tue, 16 Jun 1998 06:53:27 +0000
(06:53 +0000)
committer
Bruce Momjian
<bruce@momjian.us>
Tue, 16 Jun 1998 06:53:27 +0000
(06:53 +0000)
src/interfaces/libpgtcl/pgtclCmds.c
patch
|
blob
|
blame
|
history
diff --git
a/src/interfaces/libpgtcl/pgtclCmds.c
b/src/interfaces/libpgtcl/pgtclCmds.c
index 5444c504175e9831d04e66f8819c6378a477ae3c..c0f698ec0185da4e14c8a499be416ffa20f5f212 100644
(file)
--- a/
src/interfaces/libpgtcl/pgtclCmds.c
+++ b/
src/interfaces/libpgtcl/pgtclCmds.c
@@
-7,7
+7,7
@@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.2
6 1998/06/16 05:50:55
momjian Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.2
7 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);