Fixed compiler option -DHARDSTACKTESTS to commit 5aa36e8
diff --git a/llimits.h b/llimits.h
index d6866d7..a76c13e 100644
--- a/llimits.h
+++ b/llimits.h
@@ -355,7 +355,7 @@
 #else
 /* realloc stack keeping its size */
 #define condmovestack(L,pre,pos)  \
-  { int sz_ = (L)->stacksize; pre; luaD_reallocstack((L), sz_, 0); pos; }
+  { int sz_ = stacksize(L); pre; luaD_reallocstack((L), sz_, 0); pos; }
 #endif
 
 #if !defined(HARDMEMTESTS)