From c55b539d4632f554d76e7c5c5be0dbbca7e3ffdd Mon Sep 17 00:00:00 2001
From: DeaDDooMER <deaddoomer@deadsoftware.ru>
Date: Sat, 4 Mar 2017 02:15:06 +0300
Subject: [PATCH] Fix memory corruption when load library

---
 mpc/.gitignore         | 1 +
 mpc/Makefile           | 2 +-
 mpc/structures/block.c | 7 ++++---
 3 files changed, 6 insertions(+), 4 deletions(-)
 create mode 100644 mpc/.gitignore

diff --git a/mpc/.gitignore b/mpc/.gitignore
new file mode 100644
index 0000000..9854580
--- /dev/null
+++ b/mpc/.gitignore
@@ -0,0 +1 @@
+mp3CC
diff --git a/mpc/Makefile b/mpc/Makefile
index 61e8c9d..e12def3 100644
--- a/mpc/Makefile
+++ b/mpc/Makefile
@@ -1,5 +1,5 @@
 CC = gcc
-CFLAGS = -DLINUX -DUNIX -DNDEBUG -D_CONSOLE
+CFLAGS = -g -DLINUX -DUNIX -DNDEBUG -D_CONSOLE
 LDFLAGS = -lm
 OUTPUT = mp3CC
 SOURCES = */*.c
diff --git a/mpc/structures/block.c b/mpc/structures/block.c
index cb7b9d4..1b55eea 100644
--- a/mpc/structures/block.c
+++ b/mpc/structures/block.c
@@ -792,9 +792,10 @@ void read_library_file(FILE* library_file, unit* library_unit)
 			method->container_unit = library_unit;
 			method_name = string_create();
 			method_name->length = constant_pool[method_name_index].data_len;
-			method_name->cstr = malloc(method_name->length + 1);
-			strcpy(method_name->cstr, constant_pool[method_name_index].data);
-			method_name->cstr[method_name->length] = '\0';
+			// Strings in class has no null char
+			method_name->cstr = malloc(method_name->length + 2);
+			strncpy(method_name->cstr, constant_pool[method_name_index].data, method_name->length);
+			method_name->cstr[method_name->length + 1] = '\0';
 			name_table_insert(library_unit->names, method_name, method);
 		}
 
-- 
2.29.2