summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-11-17 02:22:35 +0000
committerJeremy Allison <jra@samba.org>2000-11-17 02:22:35 +0000
commit475fb713a9427b54c747a4e71a011c7db29d5e13 (patch)
tree201275f216533a9e30675ce35a6f8d21595ab8fb /source3/include
parent08036f0f3d3a1dbddc6b3aaba976670e80e47cab (diff)
downloadsamba-475fb713a9427b54c747a4e71a011c7db29d5e13.tar.gz
samba-475fb713a9427b54c747a4e71a011c7db29d5e13.tar.bz2
samba-475fb713a9427b54c747a4e71a011c7db29d5e13.zip
Fix for memory leak when adding driver.
Jeremy. (This used to be commit eeab4e0290f9df84025e91c85d27b21e0c02781f)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/proto.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index d8d7180cc1..27d4c12123 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -1751,8 +1751,9 @@ uint32 clean_up_driver_struct(NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract,
BOOL move_driver_to_download_area(NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract, uint32 level, struct current_user *user, uint32 *perr);
uint32 get_a_printer_driver_9x_compatible(pstring line, fstring model);
uint32 del_a_printer(char *sharename);
-BOOL add_a_specific_param(NT_PRINTER_INFO_LEVEL_2 *info_2, NT_PRINTER_PARAM *param);
+void add_a_specific_param(NT_PRINTER_INFO_LEVEL_2 *info_2, NT_PRINTER_PARAM **param);
BOOL unlink_specific_param_if_exist(NT_PRINTER_INFO_LEVEL_2 *info_2, NT_PRINTER_PARAM *param);
+void free_nt_printer_param(NT_PRINTER_PARAM **param_ptr);
NT_DEVICEMODE *construct_nt_devicemode(const fstring default_devicename);
NT_DEVICEMODE *dup_nt_devicemode(NT_DEVICEMODE *nt_devicemode);
void free_nt_devicemode(NT_DEVICEMODE **devmode_ptr);