ObjFW  Diff

Differences From Artifact [3398a352d7]:

To Artifact [8890f1cc69]:


104
105
106
107
108
109
110
111
112


113
114
115
116
117

118
119
120
121
122
123
124
125
126
127
128
129

130
131
132
133
134
135
136
104
105
106
107
108
109
110


111
112





113


114
115
116
117
118


119
120

121
122
123
124
125
126
127
128







-
-
+
+
-
-
-
-
-
+
-
-





-
-


-
+







}

- (OFINICategory *)categoryForName: (OFString *)name
{
	void *pool = objc_autoreleasePoolPush();
	OFINICategory *category;

	for (category in _categories) {
		if ([[category name] isEqual: name]) {
	for (category in _categories)
		if ([[category name] isEqual: name])
			OFINICategory *ret = [category retain];

			objc_autoreleasePoolPop(pool);

			return [ret autorelease];
			return category;
		}
	}

	category = [[[OFINICategory alloc] OF_init] autorelease];
	[category setName: name];
	[_categories addObject: category];

	[category retain];

	objc_autoreleasePoolPop(pool);

	return [category autorelease];
	return category;
}

- (void)OF_parseFile: (OFString *)path
	    encoding: (of_string_encoding_t)encoding
{
	void *pool = objc_autoreleasePoolPush();
	OFFile *file;