summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-François Micouleau <jfm@samba.org>2001-08-17 17:07:40 +0000
committerJean-François Micouleau <jfm@samba.org>2001-08-17 17:07:40 +0000
commit5e9a36bd9c1aa1a28f042ec9016a097215e4539e (patch)
treef86f94a1a52ed904d89a11085556676a292c1f29
parent8c3cf2db95a0fcf48b21274cac93f13abb42d4bf (diff)
downloadsamba-5e9a36bd9c1aa1a28f042ec9016a097215e4539e.tar.gz
samba-5e9a36bd9c1aa1a28f042ec9016a097215e4539e.tar.xz
samba-5e9a36bd9c1aa1a28f042ec9016a097215e4539e.zip
more useful debug messages and check if the size are non null.
that fix the notification backend channel for spoolss. J.F.
-rw-r--r--source/libsmb/clitrans.c27
1 files changed, 17 insertions, 10 deletions
diff --git a/source/libsmb/clitrans.c b/source/libsmb/clitrans.c
index c4e19b9375f..c97ddfc3318 100644
--- a/source/libsmb/clitrans.c
+++ b/source/libsmb/clitrans.c
@@ -188,18 +188,25 @@ BOOL cli_receive_trans(struct cli_state *cli,int trans,
total_param = SVAL(cli->inbuf,smb_tprcnt);
/* allocate it */
- tdata = Realloc(*data,total_data);
- if (!tdata) {
- DEBUG(0,("cli_receive_trans: failed to enlarge buffer"));
- return False;
+ if (total_data!=0) {
+ tdata = Realloc(*data,total_data);
+ if (!tdata) {
+ DEBUG(0,("cli_receive_trans: failed to enlarge data buffer\n"));
+ return False;
+ }
+ else
+ *data = tdata;
}
- else *data = tdata;
- tdata = Realloc(*param,total_param);
- if (!tdata) {
- DEBUG(0,("cli_receive_trans: failed to enlarge buffer"));
- return False;
+
+ if (total_param!=0) {
+ tdata = Realloc(*param,total_param);
+ if (!tdata && total_param!=0) {
+ DEBUG(0,("cli_receive_trans: failed to enlarge param buffer\n"));
+ return False;
+ }
+ else
+ *param = tdata;
}
- else *param = tdata;
while (1) {
this_data = SVAL(cli->inbuf,smb_drcnt);