diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_parse/parse_shutdown.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/rpc_parse/parse_shutdown.c b/source3/rpc_parse/parse_shutdown.c index de850ca4cc..da33807733 100644 --- a/source3/rpc_parse/parse_shutdown.c +++ b/source3/rpc_parse/parse_shutdown.c @@ -32,9 +32,18 @@ void init_shutdown_q_init(SHUTDOWN_Q_INIT *q_s, const char *msg, uint32 timeout, BOOL do_reboot, BOOL force) { q_s->server = TALLOC_P( get_talloc_ctx(), uint16 ); + if (!q_s->server) { + smb_panic("init_shutdown_q_init: talloc fail.\n"); + return; + } + *q_s->server = 0x1; q_s->message = TALLOC_ZERO_P( get_talloc_ctx(), UNISTR4 ); + if (!q_s->message) { + smb_panic("init_shutdown_q_init: talloc fail.\n"); + return; + } if ( msg && *msg ) { init_unistr4( q_s->message, msg, UNI_FLAGS_NONE ); @@ -206,6 +215,11 @@ Inits a structure. void init_shutdown_q_abort(SHUTDOWN_Q_ABORT *q_s) { q_s->server = TALLOC_P( get_talloc_ctx(), uint16 ); + if (!q_s->server) { + smb_panic("init_shutdown_q_abort: talloc fail.\n"); + return; + } + *q_s->server = 0x1; } |