aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-04 16:11:03 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-04 16:11:03 +0000
commit351576e18a2ffa51a55af90093060e651b83e5fc (patch)
treee79cf5d30b3323f4b989f4b16a50250b463d60a3 /pbx
parentdcdab9324c53636c7b5c6b4b16f4708f237bfd27 (diff)
Move the free down one
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@128029 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx')
-rw-r--r--pbx/pbx_config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c
index 0fb9430c7..fd4fc00d3 100644
--- a/pbx/pbx_config.c
+++ b/pbx/pbx_config.c
@@ -799,10 +799,10 @@ static char *complete_context_remove_extension_deprecated(const char *line, cons
error3:
if (exten)
free(exten);
+ }
#ifdef BROKEN_READLINE
- free(word2);
+ free(word2);
#endif
- }
return ret;
}