From f74b38bcd82485410fec47fc3f8e6f77f8bef456 Mon Sep 17 00:00:00 2001 From: helixhorned Date: Sat, 11 Apr 2015 13:53:07 +0000 Subject: [PATCH] Mapster32/C++ build/non-Lua: probably fix a crash in showsectordata(). Reported in http://forums.duke4.net/topic/1348-mapster32-problems-and-bugs/page__view__findpost__p__220722 I could not reproduce it, but it is thinkable that 'searchsector' could have been out-of-sync with the 'sectnum' local. (For example, the former one could have been -1, triggering the crash.) git-svn-id: https://svn.eduke32.com/eduke32@5132 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/build/src/build.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/polymer/eduke32/build/src/build.c b/polymer/eduke32/build/src/build.c index 760ae4ec9..cc792b380 100644 --- a/polymer/eduke32/build/src/build.c +++ b/polymer/eduke32/build/src/build.c @@ -10188,12 +10188,11 @@ void printcoords16(int32_t posxe, int32_t posye, int16_t ange) void showsectordata(int16_t sectnum, int16_t small) { - sectortype *sec; char snotbuf[80]; int32_t col=0; //,row = 0; int32_t color = small ? whitecol : editorcolors[11]; - sec = §or[sectnum]; + const sectortype *const sec = §or[sectnum]; if (small) { @@ -10218,7 +10217,7 @@ void showsectordata(int16_t sectnum, int16_t small) { int32_t xp=sec->ceilingxpanning, yp=sec->ceilingypanning; #ifdef YAX_ENABLE__COMPAT - if (yax_getbunch(searchsector, YAX_CEILING) >= 0) + if (yax_getbunch(sectnum, YAX_CEILING) >= 0) xp = yp = 0; #endif DOPRINT(56, "(X,Y)pan: %d, %d", xp, yp); @@ -10239,7 +10238,7 @@ void showsectordata(int16_t sectnum, int16_t small) { int32_t xp=sec->floorxpanning, yp=sec->floorypanning; #ifdef YAX_ENABLE__COMPAT - if (yax_getbunch(searchsector, YAX_FLOOR) >= 0) + if (yax_getbunch(sectnum, YAX_FLOOR) >= 0) xp = yp = 0; #endif DOPRINT(56, "(X,Y)pan: %d, %d", xp, yp);