mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-31 00:51:17 +00:00
- 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:
parent
ab9b08e584
commit
ccd24cd647
3 changed files with 46 additions and 27 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue