ObjFW  Check-in [6ba1cbaddb]

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 | trunk
Files: files | file ages | folders
SHA3-256: 6ba1cbaddba1f6a6257572c45ab29a472f72108a3d38848ee4d10076ad70c9a5
User & Date: js on 2011-04-10 12:19:50
Other Links: manifest | tags
Context
2011-04-10
18:07
Update ChangeLog. check-in: f226801be6 user: js tags: trunk
12:19
Apple GCC 4.0.1 thinks this variable might be uninitialized.
It can't, but let's make GCC happy.
check-in: 6ba1cbaddb user: js tags: trunk
2011-04-09
20:29
Increase version to 0.6-dev. check-in: 27adf53046 user: js tags: trunk
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.