--- libccscript3-1.1.7.orig/src/compiler.cpp
+++ libccscript3-1.1.7/src/compiler.cpp
@@ -1144,7 +1144,7 @@
 				continue;
 
 			if(!strchr(token, ':')) {
-				snprintf(temp, sizeof(temp), name);
+				snprintf(temp, sizeof(temp), "%s", name);
 				cp = strchr(temp, ':');
 				if(cp)
 					*cp = 0;
--- libccscript3-1.1.7.orig/modules/property.cpp
+++ libccscript3-1.1.7/modules/property.cpp
@@ -381,7 +381,7 @@
 			goto unlock;
 
 		sym->type = symORIGINAL;
-		snprintf(sym->data, sym->size + 1, ep);
+		snprintf(sym->data, sym->size + 1, "%s", ep);
 unlock:
 		release();
 		Thread::yield();
