summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2021-08-02 19:50:47 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2021-08-03 00:57:35 +0000
commit1fc4a17e1c3d774c843bdfc4f4638df2a666870e (patch)
treea1af0b17f5a7dd56315c9a9dd447902b4ac108d3 /apps
parent3b6c3d769fc944a09a10f40cdfc1a29f908ab882 (diff)
language.c fix possible buffer overrun
ensure zero termination regardless of data read from lang file Change-Id: I0da0e787ffb10c9268557812b061cc3c452fbd0a
Diffstat (limited to 'apps')
-rw-r--r--apps/language.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/language.c b/apps/language.c
index 7fe1258dea..1ad1d5c829 100644
--- a/apps/language.c
+++ b/apps/language.c
@@ -86,7 +86,7 @@ int lang_load(const char *filename, const unsigned char *builtin,
lang_init(builtin, dest, max_id);
lseek(fd, foffset, SEEK_SET);
read(fd, buffer, lang_size);
-
+ buffer[max_lang_size - 1] = '\0'; /* ensure buffer is null terminated */
while(lang_size>3) {
id = ((buffer[0]<<8) | buffer[1]); /* get two-byte id */
buffer += 2; /* pass the id */
@@ -100,7 +100,7 @@ int lang_load(const char *filename, const unsigned char *builtin,
while(*buffer) { /* pass the string */
lang_size--;
buffer++;
- }
+ }
lang_size-=3; /* the id and the terminating zero */
buffer++; /* pass the terminating zero-byte */
}