mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 08:40:16 +00:00
Merged revisions 165255 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r165255 | mmichelson | 2008-12-17 14:51:38 -0600 (Wed, 17 Dec 2008) | 7 lines Fix some memory leaks found while looking at how realtime configs are handled. Also cleaned up some coding guidelines violations in app_realtime.c, mostly related to spacing ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@165318 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1812,7 +1812,7 @@ static int rt_extend_conf(char *confno)
|
||||
char endtime[32];
|
||||
struct timeval now;
|
||||
struct ast_tm tm;
|
||||
struct ast_variable *var;
|
||||
struct ast_variable *var, *orig_var;
|
||||
char bookid[8];
|
||||
|
||||
if (!extendby) {
|
||||
@@ -1828,6 +1828,8 @@ static int rt_extend_conf(char *confno)
|
||||
confno, "startTime<= ", currenttime,
|
||||
"endtime>= ", currenttime, NULL);
|
||||
|
||||
origvar = var;
|
||||
|
||||
/* Identify the specific RealTime conference */
|
||||
while (var) {
|
||||
if (!strcasecmp(var->name, "bookid")) {
|
||||
@@ -1839,7 +1841,7 @@ static int rt_extend_conf(char *confno)
|
||||
|
||||
var = var->next;
|
||||
}
|
||||
ast_variables_destroy(var);
|
||||
ast_variables_destroy(orig_var);
|
||||
|
||||
ast_strptime(endtime, DATE_FORMAT, &tm);
|
||||
now = ast_mktime(&tm, NULL);
|
||||
|
||||
Reference in New Issue
Block a user