commit | fc39963007791f3afa2e0266b40c4e07d63da346 | [log] [tgz] |
---|---|---|
author | Greg Kaiser <gkaiser@google.com> | Wed Oct 02 07:07:32 2019 -0700 |
committer | Greg Kaiser <gkaiser@google.com> | Wed Oct 02 07:07:32 2019 -0700 |
tree | ecf96d56ff685fc29b6c831508f026b3a266240f | |
parent | 4e63bdd1f84f3dc659d958116df122bd8cd432cb [diff] |
lmkd: Avoid potential out of buffer write Our buffer needs enough space for the '\0' terminator character as well. Test: TreeHugger Change-Id: Ib85d08dacf87b93d5f8b35b033ca0ec478868e66
diff --git a/lmkd/lmkd.c b/lmkd/lmkd.c index 449088a..28f7616 100644 --- a/lmkd/lmkd.c +++ b/lmkd/lmkd.c
@@ -1394,7 +1394,7 @@ char *buf; char *save_ptr; char *line; - char zone_name[LINE_MAX]; + char zone_name[LINE_MAX + 1]; struct zoneinfo_node *node = NULL; int node_idx = 0; int zone_idx = 0;