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