[asterisk-commits] tilghman: branch 1.6.1 r190354 - in /branches/1.6.1: ./ main/pbx.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Apr 23 15:43:47 CDT 2009
Author: tilghman
Date: Thu Apr 23 15:43:43 2009
New Revision: 190354
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=190354
Log:
Merged revisions 190352 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r190352 | tilghman | 2009-04-23 15:42:11 -0500 (Thu, 23 Apr 2009) | 7 lines
Labels are sometimes (most of the time?) NULL for extensions.
(closes issue #14895)
Reported by: chris-mac
Patches:
20090423__bug14895__2.diff.txt uploaded by tilghman (license 14)
Tested by: lmadsen
........
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/main/pbx.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/main/pbx.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/main/pbx.c?view=diff&rev=190354&r1=190353&r2=190354
==============================================================================
--- branches/1.6.1/main/pbx.c (original)
+++ branches/1.6.1/main/pbx.c Thu Apr 23 15:43:43 2009
@@ -389,7 +389,7 @@
{
const struct ast_exten *ac = ah_a;
const struct ast_exten *bc = ah_b;
- return strcmp(ac->label, bc->label);
+ return strcmp(S_OR(ac->label, ""), S_OR(bc->label, ""));
}
unsigned int ast_hashtab_hash_contexts(const void *obj)
@@ -417,7 +417,7 @@
static unsigned int hashtab_hash_labels(const void *obj)
{
const struct ast_exten *ac = obj;
- return ast_hashtab_hash_string(ac->label);
+ return ast_hashtab_hash_string(S_OR(ac->label, ""));
}
More information about the asterisk-commits
mailing list