Fix segfault when buddy couldn't be found.

Issue 7764, patch by sailer


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@55799 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jason Parker
2007-02-21 02:01:36 +00:00
parent 39026c9f96
commit 67421802de

View File

@@ -836,7 +836,7 @@ static struct gtalk_pvt *gtalk_alloc(struct gtalk *client, const char *us, const
buddy = ASTOBJ_CONTAINER_FIND(&client->connection->buddies, them);
if (buddy)
resources = buddy->resources;
} else
} else if (client->buddy)
resources = client->buddy->resources;
while (resources) {
if (resources->cap->jingle) {