diff options
author | Jeremy Allison <jra@samba.org> | 2000-04-06 22:48:53 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-04-06 22:48:53 +0000 |
commit | aac823aca154c46264dd29510c89b8eafac361c8 (patch) | |
tree | ec63150622ad0e3beab34743afd38cc5838c8ca4 /source3/include/proto.h | |
parent | 154596cae5816f0f5a658a5985d1ecdbdafacf26 (diff) | |
download | samba-aac823aca154c46264dd29510c89b8eafac361c8.tar.gz samba-aac823aca154c46264dd29510c89b8eafac361c8.tar.bz2 samba-aac823aca154c46264dd29510c89b8eafac361c8.zip |
Modified interfaces and added checks around *all* *alloc calls
so that errors are returned on memory allocation failure.
Jeremy.
(This used to be commit 9a118cd4a2b03146b341eeffb62144a2d29b574c)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index c74d775329..9552dc3d1d 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1519,7 +1519,7 @@ BOOL trust_get_passwd( unsigned char trust_passwd[16], char *domain, char *mynam int get_ntforms(nt_forms_struct **list); int write_ntforms(nt_forms_struct **list, int number); -void add_a_form(nt_forms_struct **list, const FORM *form, int *count); +BOOL add_a_form(nt_forms_struct **list, const FORM *form, int *count); void update_a_form(nt_forms_struct **list, const FORM *form, int count); int get_ntdrivers(fstring **list, char *architecture); void get_short_archi(char *short_archi, char *long_archi); @@ -2369,7 +2369,7 @@ BOOL new_smb_io_job_info_1(char *desc, NEW_BUFFER *buffer, JOB_INFO_1 *info, int BOOL new_smb_io_job_info_2(char *desc, NEW_BUFFER *buffer, JOB_INFO_2 *info, int depth); BOOL new_smb_io_form_1(char *desc, NEW_BUFFER *buffer, FORM_1 *info, int depth); void new_spoolss_move_buffer(NEW_BUFFER *src, NEW_BUFFER **dest); -void new_spoolss_allocate_buffer(NEW_BUFFER **buffer); +BOOL new_spoolss_allocate_buffer(NEW_BUFFER **buffer); void new_spoolss_free_buffer(NEW_BUFFER *buffer); uint32 new_get_buffer_size(NEW_BUFFER *buffer); BOOL new_smb_io_driverdir_1(char *desc, NEW_BUFFER *buffer, DRIVER_DIRECTORY_1 *info, int depth); |