File: mismatched-dealloc.patch

package info (click to toggle)
gnustep-xcode 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,168 kB
  • sloc: objc: 9,258; sh: 61; makefile: 20
file content (17 lines) | stat: -rw-r--r-- 494 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Use proper dealloc function.
Author: Yavor Doganov <yavor@gnu.org>
Forwarded: no
Last-Update: 2025-11-02
---

--- gnustep-xcode-0.5.0.orig/XCode/NSString+PBXAdditions.m
+++ gnustep-xcode-0.5.0/XCode/NSString+PBXAdditions.m
@@ -276,7 +276,7 @@
                              [NSString stringWithCString: string]];
         }
       
-      fclose(fp);
+      pclose(fp);
     }
 
   output = [output stringByTrimmingTrailingCharactersInSet: [NSCharacterSet whitespaceCharacterSet]];