diff options
author | Rob Landley <rob@landley.net> | 2016-05-07 00:21:34 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-05-07 00:21:34 -0500 |
commit | 869da8ce3752ce6f5aa63d302eebe60a2b5c8da8 (patch) | |
tree | 4e0a4fe101be928c5a85e327ae1641babad586bd | |
parent | d3e8dd1bf56afc2277960472a46907d419e4b3da (diff) | |
download | toybox-869da8ce3752ce6f5aa63d302eebe60a2b5c8da8.tar.gz |
Work around increasingly insane compiler developers wanting to make everything
undefined behavior so the optimizer can silently eliminate your entire program.
-rw-r--r-- | main.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -137,8 +137,10 @@ void toy_exec(char *argv[]) if (!(which = toy_find(*argv))) return; // Return if stack depth getting noticeable (proxy for leaked heap, etc). - if (toys.stacktop && labs((char *)toys.stacktop-(char *)&which)>6000) - return; + + // Compiler writers have decided subtracting char * is undefined behavior, + // so convert to integers. (LP64 says sizeof(long)==sizeof(pointer).) + if (toys.stacktop && labs((long)toys.stacktop-(long)&which)>6000) return; // Return if we need to re-exec to acquire root via suid bit. if (toys.which && (which->flags&TOYFLAG_ROOTONLY) && toys.wasroot) return; |