mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Change ast_hangup() to return void and be NULL safe.
Since ast_hangup() is effectively a channel destructor, it should be a void function. * Make the few silly callers checking the return value no longer do so. Only the CDR and CEL unit tests checked the return value. * Make all callers take advantage of the NULL safe change and remove the NULL check before the call. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@394623 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1427,9 +1427,9 @@ const struct ast_channel_tech *ast_get_channel_tech(const char *name);
|
||||
* performs all stream stopping, etc, on the channel that needs to end.
|
||||
* chan is no longer valid after this call.
|
||||
* \param chan channel to hang up
|
||||
* \return Returns 0 on success, -1 on failure.
|
||||
* \return Nothing
|
||||
*/
|
||||
int ast_hangup(struct ast_channel *chan);
|
||||
void ast_hangup(struct ast_channel *chan);
|
||||
|
||||
/*!
|
||||
* \brief Softly hangup up a channel
|
||||
|
Reference in New Issue
Block a user