mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
use dstring_new instead of dstring_newstr to avoid allocating memory that's
only going to be reallocated immediatly anyway.
This commit is contained in:
parent
55a5c39187
commit
313c82efef
1 changed files with 1 additions and 1 deletions
|
@ -1164,7 +1164,7 @@ main (int argc, char **argv)
|
|||
DecodeArgs (argc, argv);
|
||||
|
||||
#ifdef USE_CPP
|
||||
tempname = dstring_newstr ();
|
||||
tempname = dstring_new ();
|
||||
parse_cpp_name ();
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue