ObjFW  Check-in [c7c8a3e053]

Overview
Comment:Fix wrong variable names resulting from backport.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.5
Files: files | file ages | folders
SHA3-256: c7c8a3e053a5740c302b2701a394e32ee1dbd641a1dff2d5e0387a5ad3d2ca99
User & Date: js on 2011-06-30 23:28:21
Other Links: branch diff | manifest | tags
Context
2011-06-30
23:28
Fix wrong variable names resulting from backport. check-in: c7c8a3e053 user: js tags: 0.5
23:24
Update ChangeLog. check-in: 213442d810 user: js tags: 0.5, 0.5.3-release
23:24
Set version to 0.5.3. check-in: 898c1402ce user: js tags: 0.5
Changes

Modified src/OFDictionary.m from [fc654f7782] to [af933f0dd2].

145
146
147
148
149
150
151
152

153
154
155
156
157
158
159
145
146
147
148
149
150
151

152
153
154
155
156
157
158
159







-
+







{
	self = [super init];

	@try {
		uint32_t i;
		BUCKET *b;

		if (key == nil || object == nil)
		if (key == nil || obj == nil)
			@throw [OFInvalidArgumentException newWithClass: isa
							       selector: _cmd];

		data = [self allocMemoryForNItems: 2
					 withSize: sizeof(BUCKET*)];

		size = 2;

Modified src/of_asprintf.m from [e3742f904d] to [ff2c736c3a].

234
235
236
237
238
239
240
241

242
243
244

245
246
247
248
249
250
251
234
235
236
237
238
239
240

241
242
243

244
245
246
247
248
249
250
251







-
+


-
+







		} else
			ctx->i--;

		break;
#endif
#ifdef OF_IOS
	case 'q': /* iOS uses this for PRI?64 */
		if (!appendSubformat(ctx, ctx->format + ctx->i, 1))
		if (!append_subfmt(ctx, ctx->fmt + ctx->i, 1))
			return false;

		ctx->lengthModifier = LENGTH_MODIFIER_LL;
		ctx->len_mod = LENGTH_MODIFIER_LL;

		break;
#endif
	default:
		ctx->i--;

		break;