mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[nq] Don't double-allocate timedemo data buffer
Looks like a copy/paste error (wild guess: got my fingers tangled in vim).
This commit is contained in:
parent
50226a64c3
commit
a17deb3ef2
1 changed files with 0 additions and 1 deletions
|
@ -669,7 +669,6 @@ CL_TimeDemo_f (void)
|
|||
free (timedemo_data);
|
||||
timedemo_data = 0;
|
||||
}
|
||||
timedemo_data = calloc (timedemo_runs, sizeof (td_stats_t));
|
||||
dstring_copystr (demoname, Cmd_Argv (1));
|
||||
CL_StartTimeDemo ();
|
||||
timedemo_runs = timedemo_count = max (count, 1);
|
||||
|
|
Loading…
Reference in a new issue