ObjFW  Check-in [548596813b]

Overview
Comment:Apple GCC 4.0.1 thinks this variable might be uninitialized.
It can't, but let's make GCC happy.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.5
Files: files | file ages | folders
SHA3-256: 548596813b3cd06a78572da0405b56df03e6ef877cf2580d5fdba492a8fb6148
User & Date: js on 2011-04-10 12:18:37
Other Links: branch diff | manifest | tags
Context
2011-04-10
18:04
Set version to 0.5.1 in 0.5 branch. check-in: 65b10aa0d5 user: js tags: 0.5
12:18
Apple GCC 4.0.1 thinks this variable might be uninitialized.
It can't, but let's make GCC happy.
check-in: 548596813b user: js tags: 0.5
2011-04-09
20:38
Added tag 0.5-release for changeset b9c812fcdd26 check-in: 41ce1e2347 user: js tags: 0.5
Changes

Modified src/OFHTTPRequest.m from [5637b3f014] to [c8b35b7eac].

163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
	@try {
		OFString *line, *path;
		OFMutableDictionary *s_headers;
		OFDataArray *data;
		OFEnumerator *enumerator;
		OFString *key;
		int status;
		const char *t;

		[sock connectToHost: [URL host]
			     onPort: [URL port]];

		/*
		 * Work around a bug with packet bisection in lighttpd when
		 * using HTTPS.







|







163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
	@try {
		OFString *line, *path;
		OFMutableDictionary *s_headers;
		OFDataArray *data;
		OFEnumerator *enumerator;
		OFString *key;
		int status;
		const char *t = NULL;

		[sock connectToHost: [URL host]
			     onPort: [URL port]];

		/*
		 * Work around a bug with packet bisection in lighttpd when
		 * using HTTPS.