Displaying 1 result from an estimated 1 matches for "vsfac".
Did you mean:
sfac
2008 Feb 23
0
patch: two minor debugging-related pointer protection stack issues (PR#10832)
...@ -1557,7 +1557,7 @@
R_Suicide("couldn't allocate memory for pointer stack");
R_PPStackTop = 0;
#if VALGRIND_LEVEL > 1
- VALGRIND_MAKE_NOACCESS(R_PPStackTop+R_PPStackSize,PP_REDZONE_SIZE);
+ VALGRIND_MAKE_NOACCESS(R_PPStack+R_PPStackSize,PP_REDZONE_SIZE);
#endif
vsfac = sizeof(VECREC);
R_VSize = (((R_VSize + 1)/ vsfac));
@@ -2329,11 +2329,11 @@
} while ( R_PPStack[--i] != s );
/* OK, got it, and i is indexing its location */
- /* Now drop stack above it */
+ /* Now drop stack above it, if any */
- do {
- R_PPStack[i] = R_PPStack...