mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
fixes some memory leaks and redundant conditions
(closes issue #15269) Reported by: contactmayankjain Patches: patch.txt uploaded by contactmayankjain (license 740) memory_leak_stuff.trunk.diff uploaded by dvossel (license 671) Tested by: contactmayankjain, dvossel git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@201678 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -471,7 +471,7 @@ int main(int argc, char **argv)
|
||||
if (mon) {
|
||||
*mon++ = 0;
|
||||
/* now all 4 fields are set; what do we do? */
|
||||
pvalIncludesAddIncludeWithTimeConstraints(incl, all, hr, dow, dom, mon);
|
||||
pvalIncludesAddIncludeWithTimeConstraints(incl, strdup(all), strdup(hr), strdup(dow), strdup(dom), strdup(mon));
|
||||
/* the original data is always best to keep (no 2-min rounding) */
|
||||
} else {
|
||||
ast_log(LOG_ERROR,"No month spec attached to include!\n");
|
||||
@@ -483,6 +483,7 @@ int main(int argc, char **argv)
|
||||
ast_log(LOG_ERROR,"No day of week spec attached to include!\n");
|
||||
}
|
||||
}
|
||||
free(all);
|
||||
}
|
||||
tmpi = tmpi->next;
|
||||
}
|
||||
|
Reference in New Issue
Block a user