- Fix unterminated string errors in Q_vsnprintf() on windows. Thanks to Eugene C. for reporting (#4907)

- Get rid of bigbuffer in Com_sprintf()
- Get rid of Q_snprintf and replace with Com_sprintf()
This commit is contained in:
Thilo Schulz 2011-02-23 16:17:09 +00:00
parent ab9b08e584
commit ccd24cd647
3 changed files with 46 additions and 27 deletions

View file

@ -425,7 +425,7 @@ void *Sys_LoadDll( const char *name,
assert( name );
Q_snprintf (fname, sizeof(fname), "%s" ARCH_STRING DLL_EXT, name);
Com_sprintf(fname, sizeof(fname), "%s" ARCH_STRING DLL_EXT, name);
netpath = FS_FindDll(fname);