in q_shared.c around line 954:
/*
============
va
does a varargs printf into a temp buffer, so I don't need to have
varargs versions of all text functions.
FIXME: make this buffer size safe someday
============
*/
this patch makes va buffer size safe by using vsnprintf.
However, this patch could be improved by providing a vsnprintf for QVMs as the patch just uses a simple wrapper.
Created attachment 1660 [details] said patch