mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-15 10:39:10 +00:00
(svn r8066) - Codechange: MallocT(), CallocT(), ReallocT() now return the pointer to allocated memory instead of modifying the pointer given as parameter
This commit is contained in:
@@ -544,7 +544,7 @@ void AssignWidgetToWindow(Window *w, const Widget *widget)
|
||||
|
||||
for (wi = widget; wi->type != WWT_LAST; wi++) index++;
|
||||
|
||||
ReallocT(&w->widget, index);
|
||||
w->widget = ReallocT(w->widget, index);
|
||||
memcpy(w->widget, widget, sizeof(*w->widget) * index);
|
||||
w->widget_count = index - 1;
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user