[asterisk-commits] tilghman: branch 1.4 r128029 - /branches/1.4/pbx/pbx_config.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Jul 4 11:11:03 CDT 2008
Author: tilghman
Date: Fri Jul 4 11:11:03 2008
New Revision: 128029
URL: http://svn.digium.com/view/asterisk?view=rev&rev=128029
Log:
Move the free down one
Modified:
branches/1.4/pbx/pbx_config.c
Modified: branches/1.4/pbx/pbx_config.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/pbx/pbx_config.c?view=diff&rev=128029&r1=128028&r2=128029
==============================================================================
--- branches/1.4/pbx/pbx_config.c (original)
+++ branches/1.4/pbx/pbx_config.c Fri Jul 4 11:11:03 2008
@@ -799,10 +799,10 @@
error3:
if (exten)
free(exten);
+ }
#ifdef BROKEN_READLINE
- free(word2);
+ free(word2);
#endif
- }
return ret;
}
More information about the asterisk-commits
mailing list