DrBeef / QuakeGVR

Updated QuakeGVR with ArCore *Positional Tracking* and Decoupled 3DOF controller support
55 stars 14 forks source link

Maybe SIGSEGV #2

Closed KP142EH12 closed 5 years ago

KP142EH12 commented 8 years ago

in common.c

char *portable_va(char *buf, size_t buflen, const char *format, ...)
{
    va_list argptr;

    va_start (argptr, format);
    portable_snprintf (buf, buflen, format,argptr); // <-- there should be portable_vsnprintf(...);
    va_end (argptr);

    return buf;
}
DrBeef commented 5 years ago

Now fixed (over 2 years later!) thank-you!