diff --git a/Source/NSData.m b/Source/NSData.m index fdbff085f..1c242fb1d 100644 --- a/Source/NSData.m +++ b/Source/NSData.m @@ -316,7 +316,7 @@ failure: @interface NSDataStatic : NSData { NSUInteger length; - void *bytes; + __strong void *bytes; } @end @@ -329,7 +329,7 @@ failure: @interface NSMutableDataMalloc : NSMutableData { NSUInteger length; - void *bytes; + __strong void *bytes; #if GS_WITH_GC BOOL owned; #else