From ea706af7773894b888b67504cef3685fd4935846 Mon Sep 17 00:00:00 2001 From: file Date: Mon, 5 Mar 2007 03:35:03 +0000 Subject: Don't reference a potentially NULL pointer. (issue #9199 reported by klolik) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@57770 f38db490-d61c-443f-a65b-d21fe96a405b --- res/res_jabber.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'res/res_jabber.c') diff --git a/res/res_jabber.c b/res/res_jabber.c index 414f5c5bc..2cda2d9ee 100644 --- a/res/res_jabber.c +++ b/res/res_jabber.c @@ -383,7 +383,8 @@ static int aji_status_exec(struct ast_channel *chan, void *data) r = buddy->resources; if(!r) ast_log(LOG_NOTICE, "Resource %s of buddy %s not found \n", resource, screenname); - stat = r->status; + else + stat = r->status; sprintf(status, "%d", stat); pbx_builtin_setvar_helper(chan, variable, status); return 0; -- cgit v1.2.3