[svn-commits] mvanbaak: branch 1.4 r131012 - /branches/1.4/main/cdr.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Jul 15 12:47:16 CDT 2008
Author: mvanbaak
Date: Tue Jul 15 12:47:15 2008
New Revision: 131012
URL: http://svn.digium.com/view/asterisk?view=rev&rev=131012
Log:
remove 4 lines of redundant code.
(closes issue #13080)
Reported by: gknispel_proformatique
Patches:
trunk_ast_cdr_setapp.patch uploaded by gknispel (license 261)
Modified:
branches/1.4/main/cdr.c
Modified: branches/1.4/main/cdr.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/cdr.c?view=diff&rev=131012&r1=131011&r2=131012
==============================================================================
--- branches/1.4/main/cdr.c (original)
+++ branches/1.4/main/cdr.c Tue Jul 15 12:47:15 2008
@@ -785,10 +785,6 @@
for (; cdr; cdr = cdr->next) {
if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
check_post(cdr);
- if (!app)
- app = "";
- if (!data)
- data = "";
ast_copy_string(cdr->lastapp, S_OR(app, ""), sizeof(cdr->lastapp));
ast_copy_string(cdr->lastdata, S_OR(data, ""), sizeof(cdr->lastdata));
}
More information about the svn-commits
mailing list