tags 643417 patch thanks Here's a patch:
--- 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 @@ -380,7 +380,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(); -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org