[sr-dev] git:master:24718a4f: mtree: avoid char array access over the size

Daniel-Constantin Mierla miconda at gmail.com
Fri Jun 16 11:50:48 CEST 2017


Module: kamailio
Branch: master
Commit: 24718a4f0a7579abf9f32967cce2b86e5973cc6d
URL: https://github.com/kamailio/kamailio/commit/24718a4f0a7579abf9f32967cce2b86e5973cc6d

Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at 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/24718a4f0a7579abf9f32967cce2b86e5973cc6d.diff
Patch: https://github.com/kamailio/kamailio/commit/24718a4f0a7579abf9f32967cce2b86e5973cc6d.patch

---

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++) {




More information about the sr-dev mailing list