Created
October 19, 2010 05:37
-
-
Save ccgus/633670 to your computer and use it in GitHub Desktop.
NSDataOMGWTFBBQ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
int main (int argc, const char * argv[]) { | |
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; | |
int *x = malloc(sizeof(int)); | |
void *foo = x; | |
NSMutableData *d = [NSMutableData dataWithBytesNoCopy:foo length:sizeof(int) freeWhenDone:NO]; | |
NSLog(@"a: %p", [d mutableBytes]); | |
NSLog(@"b: %p", foo); | |
assert([d mutableBytes] == foo); | |
free(x); | |
[pool drain]; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment