Module: sems Branch: master Commit: 5e8e6212ab481020df7c1fd9f9cad333e94fb2d5 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=5e8e6212ab481020df7c1fd9f9cad333e94fb2d5
Author: Stefan Sayer <[email protected]> Committer: Stefan Sayer <[email protected]> Date: Thu Feb 24 14:38:11 2011 +0100 fix deref (unused) --- core/AmSdp.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/core/AmSdp.cpp b/core/AmSdp.cpp index 6bd6e1e..2505725 100644 --- a/core/AmSdp.cpp +++ b/core/AmSdp.cpp @@ -1169,7 +1169,7 @@ static bool contains(char* s, char* next_line, char c) while((line != next_line-1) && (*line)){ if(*line == c) return true; - *line++; + line++; } return false; } _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
