ObjFW  Check-in [b2df7acabb]

Overview
Comment:Forgot call to - free.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b2df7acabbda4ed576d3bffb22fbda58c9ca8d71b12a8fa433991516b08c7eb2
User & Date: js on 2008-10-26 02:47:29
Other Links: manifest | tags
Context
2008-10-26
02:49
Fix missing include. check-in: 0b49311db1 user: js tags: trunk
02:47
Forgot call to - free. check-in: b2df7acabb user: js tags: trunk
02:45
Add OFHashes. Only MD5 so far. check-in: 9a0cc3bc23 user: js tags: trunk
Changes

Modified tests/OFHashes/OFHashes.m from [0be48bf5bd] to [23304eed47].

39
40
41
42
43
44
45

46
47
48

	if (!memcmp([md5 digest], testfile_md5, 16))
		puts("Correct MD5 sum calculated!");
	else {
		puts("MD5 SUM MISMATCH!!");
		return 1;
	}


	return 0;
}







>



39
40
41
42
43
44
45
46
47
48
49

	if (!memcmp([md5 digest], testfile_md5, 16))
		puts("Correct MD5 sum calculated!");
	else {
		puts("MD5 SUM MISMATCH!!");
		return 1;
	}
	[md5 free];

	return 0;
}