Merge branch 'master' into magic-8.2

This commit is contained in:
Tim Edwards 2020-03-29 03:00:05 -04:00
commit 637d3f27d5
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.2.204
8.2.205

View File

@ -948,7 +948,7 @@ dbcConnectFunc(tile, cx)
csa2->csa2_size *= 2;
newlist = (conSrArea *)mallocMagic(csa2->csa2_size * sizeof(conSrArea));
newlist = (conSrArea *)mallocMagic((size_t)(csa2->csa2_size) * sizeof(conSrArea));
memcpy((void *)newlist, (void *)csa2->csa2_list,
(size_t)lastsize * sizeof(conSrArea));
freeMagic((char *)csa2->csa2_list);