diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-07-23 10:09:29 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-07-23 10:09:29 +0000 |
commit | 490fcdd199aed91a6e982911bd1ff5019b340b4d (patch) | |
tree | 5902056cf43be3203660a90032598ed9b1bb71c3 | |
parent | 3f3e2a8f49e05986eca28fe5c33dc75ec93dab2e (diff) | |
download | samba-490fcdd199aed91a6e982911bd1ff5019b340b4d.tar.gz samba-490fcdd199aed91a6e982911bd1ff5019b340b4d.tar.bz2 samba-490fcdd199aed91a6e982911bd1ff5019b340b4d.zip |
fixed segv in calls to pstrcpy() in cliprint.c
(This used to be commit 36bc2b99b4fec2c14f8471d89381b2d6c2f9d339)
-rw-r--r-- | source3/libsmb/cliprint.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/libsmb/cliprint.c b/source3/libsmb/cliprint.c index bfa33bc514..f302c045a5 100644 --- a/source3/libsmb/cliprint.c +++ b/source3/libsmb/cliprint.c @@ -65,16 +65,16 @@ int cli_print_queue(struct cli_state *cli, p = param; SSVAL(p,0,76); /* API function number 76 (DosPrintJobEnum) */ p += 2; - pstrcpy(p,"zWrLeh"); /* parameter description? */ + pstrcpy_base(p,"zWrLeh", param); /* parameter description? */ p = skip_string(p,1); - pstrcpy(p,"WWzWWDDzz"); /* returned data format */ + pstrcpy_base(p,"WWzWWDDzz", param); /* returned data format */ p = skip_string(p,1); - pstrcpy(p,cli->share); /* name of queue */ + pstrcpy_base(p,cli->share, param); /* name of queue */ p = skip_string(p,1); SSVAL(p,0,2); /* API function level 2, PRJINFO_2 data structure */ SSVAL(p,2,1000); /* size of bytes of returned data buffer */ p += 4; - pstrcpy(p,""); /* subformat */ + pstrcpy_base(p,"", param); /* subformat */ p = skip_string(p,1); DEBUG(4,("doing cli_print_queue for %s\n", cli->share)); @@ -133,9 +133,9 @@ int cli_printjob_del(struct cli_state *cli, int job) p = param; SSVAL(p,0,81); /* DosPrintJobDel() */ p += 2; - pstrcpy(p,"W"); + pstrcpy_base(p,"W", param); p = skip_string(p,1); - pstrcpy(p,""); + pstrcpy_base(p,"", param); p = skip_string(p,1); SSVAL(p,0,job); p += 2; |