Module: kamailio Branch: master Commit: 24718a4f0a7579abf9f32967cce2b86e5973cc6d URL: https://github.com/kamailio/kamailio/commit/24718a4f0a7579abf9f32967cce2b86e...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2017-06-16T11:49:28+02:00
mtree: avoid char array access over the size
---
Modified: src/modules/mtree/mtree.c
---
Diff: https://github.com/kamailio/kamailio/commit/24718a4f0a7579abf9f32967cce2b86e... Patch: https://github.com/kamailio/kamailio/commit/24718a4f0a7579abf9f32967cce2b86e...
---
diff --git a/src/modules/mtree/mtree.c b/src/modules/mtree/mtree.c index 7098577381..433c6b4c50 100644 --- a/src/modules/mtree/mtree.c +++ b/src/modules/mtree/mtree.c @@ -62,7 +62,7 @@ unsigned char _mt_char_table[MT_CHAR_TABLE_SIZE]; void mt_char_table_init(void) { unsigned int i; - for(i=0; i<=MT_CHAR_TABLE_SIZE; i++) { + for(i=0; i<MT_CHAR_TABLE_SIZE; i++) { _mt_char_table[i] = MT_CHAR_TABLE_NOTSET; } for(i=0; i<mt_char_list.len; i++) {