aboutsummaryrefslogtreecommitdiff
path: root/AppKit
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2011-02-03 01:30:10 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2011-02-03 01:30:10 +0000
commit9bd71325f308d740da800b5c5066b8d8b9fdebba (patch)
treebff193c2328e0b2bad95a941d345883e65f64401 /AppKit
parentabd076bda593dcddb01c54e610fcd370dc48d31f (diff)
[Author: dmaclach]
Fix for building GTM on Snow Leopard. We were getting errors for being unable to protect buffers smaller than 8 chars. R=aharper,thomasvl DELTA=7 (4 added, 0 deleted, 3 changed)
Diffstat (limited to 'AppKit')
-rw-r--r--AppKit/GTMCarbonEvent.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/AppKit/GTMCarbonEvent.m b/AppKit/GTMCarbonEvent.m
index a0fd6ef..a2cf3f9 100644
--- a/AppKit/GTMCarbonEvent.m
+++ b/AppKit/GTMCarbonEvent.m
@@ -157,7 +157,9 @@
// description utliity for debugging
//
- (NSString *)description {
- char cls[5];
+ // Use 8 bytes because stack protection gives us a warning if we use a
+ // smaller buffer.
+ char cls[8];
UInt32 kind;
// Need everything bigendian if we are printing out the class as a "string"