diff options
author | Jeremy Allison <jra@samba.org> | 2000-06-06 20:44:58 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-06-06 20:44:58 +0000 |
commit | d253db1b9a10644940650cc802feb2a509adbaed (patch) | |
tree | 5c0309d0f5206eaee7d9769f4ff7c1efc96dd82c /source3/include | |
parent | 798670db20e67f0544fb8762a9c4813ec0bf5896 (diff) | |
download | samba-d253db1b9a10644940650cc802feb2a509adbaed.tar.gz samba-d253db1b9a10644940650cc802feb2a509adbaed.tar.bz2 samba-d253db1b9a10644940650cc802feb2a509adbaed.zip |
Memory leak fixes.
Jeremy.
(This used to be commit 34b63896ab1543936d6b9b382ef6727a161b6bf2)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 7f94fef7d7..65b84398c2 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2443,6 +2443,7 @@ BOOL sec_io_desc_buf(char *desc, SEC_DESC_BUF **ppsdb, prs_struct *ps, int depth BOOL make_systemtime(SYSTEMTIME *systime, struct tm *unixtime); BOOL smb_io_notify_info_data_strings(char *desc,SPOOL_NOTIFY_INFO_DATA *data, prs_struct *ps, int depth); +void free_spoolss_devmode(DEVICEMODE *devmode); BOOL make_spoolss_q_open_printer_ex(SPOOL_Q_OPEN_PRINTER_EX *q_u, const fstring printername, const fstring datatype, @@ -2450,6 +2451,7 @@ BOOL make_spoolss_q_open_printer_ex(SPOOL_Q_OPEN_PRINTER_EX *q_u, const fstring clientname, const fstring user_name); BOOL spoolss_io_q_open_printer_ex(char *desc, SPOOL_Q_OPEN_PRINTER_EX *q_u, prs_struct *ps, int depth); +void free_spoolss_q_open_printer_ex(SPOOL_Q_OPEN_PRINTER_EX *q_u); BOOL spoolss_io_r_open_printer_ex(char *desc, SPOOL_R_OPEN_PRINTER_EX *r_u, prs_struct *ps, int depth); BOOL spoolss_io_q_getprinterdata(char *desc, SPOOL_Q_GETPRINTERDATA *q_u, prs_struct *ps, int depth); BOOL spoolss_io_r_getprinterdata(char *desc, SPOOL_R_GETPRINTERDATA *r_u, prs_struct *ps, int depth); |