ソースを参照

Fix analyzer warning about mutable copies.

Jeff Kelley 7 年 前
コミット
00addee8a1
1 ファイル変更5 行追加0 行削除
  1. 5 0
      AFNetworking/AFURLRequestSerialization.m

+ 5 - 0
AFNetworking/AFURLRequestSerialization.m

@@ -679,6 +679,11 @@ NSTimeInterval const kAFUploadStream3GSuggestedDelay = 0.2;
     return self;
 }
 
+- (void)setRequest:(NSMutableURLRequest *)request
+{
+    _request = [request mutableCopy];
+}
+
 - (BOOL)appendPartWithFileURL:(NSURL *)fileURL
                          name:(NSString *)name
                         error:(NSError * __autoreleasing *)error