Merge "channel.c: Address stack overflow in does_id_conflict()" into 13

This commit is contained in:
George Joseph
2018-09-24 09:22:48 -05:00
committed by Gerrit Code Review
+1 -1
View File
@@ -771,7 +771,7 @@ static int ast_channel_by_uniqueid_cb(void *obj, void *arg, void *data, int flag
static int does_id_conflict(const char *uniqueid)
{
struct ast_channel *conflict;
int length = 0;
size_t length = 0;
if (ast_strlen_zero(uniqueid)) {
return 0;