mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-06-22 04:59:32 +01:00
(svn r10021) -Fix (r9560): memory "corruption" that could lead to a failure to load newgrfs.
This commit is contained in:
parent
8f361393dd
commit
62c20a9698
@ -186,8 +186,9 @@ static void NewGRFAddDlgWndProc(Window *w, WindowEvent *e)
|
||||
GRFConfig *c = CallocT<GRFConfig>(1);
|
||||
*c = *src;
|
||||
c->filename = strdup(src->filename);
|
||||
if (src->name != NULL) c->name = strdup(src->name);
|
||||
if (src->info != NULL) c->info = strdup(src->info);
|
||||
if (src->full_path != NULL) c->full_path = strdup(src->full_path);
|
||||
if (src->name != NULL) c->name = strdup(src->name);
|
||||
if (src->info != NULL) c->info = strdup(src->info);
|
||||
c->next = NULL;
|
||||
|
||||
/* Append GRF config to configuration list */
|
||||
|
Loading…
Reference in New Issue
Block a user