mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 03:04:19 +00:00
Fix a couple of spots in the handling of device states that could lead to a
double free. (issue #9772, reported by Mike Anikienko, fix by me) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@65375 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -551,7 +551,6 @@ static void *handle_statechange(struct statechange *sc)
|
|||||||
if (loc) {
|
if (loc) {
|
||||||
*loc++ = '\0';
|
*loc++ = '\0';
|
||||||
} else {
|
} else {
|
||||||
free(sc);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -572,7 +571,6 @@ static void *handle_statechange(struct statechange *sc)
|
|||||||
if (!curint) {
|
if (!curint) {
|
||||||
if (option_debug > 2)
|
if (option_debug > 2)
|
||||||
ast_log(LOG_DEBUG, "Device '%s/%s' changed to state '%d' (%s) but we don't care because they're not a member of any queue.\n", technology, loc, sc->state, devstate2str(sc->state));
|
ast_log(LOG_DEBUG, "Device '%s/%s' changed to state '%d' (%s) but we don't care because they're not a member of any queue.\n", technology, loc, sc->state, devstate2str(sc->state));
|
||||||
free(sc);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user