ObjFW  Check-in [691ce6ea29]

Overview
Comment:runtime/exception.m: Minor style fix
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 691ce6ea298d29d585805c0bb5bccb104b8ca222ac1fca4069faa908ffb06959
User & Date: js on 2016-07-18 19:57:28
Other Links: manifest | tags
Context
2016-07-24
00:06
Rename OFHash to OFCryptoHash check-in: 951f530aee user: js tags: trunk
2016-07-18
19:57
runtime/exception.m: Minor style fix check-in: 691ce6ea29 user: js tags: trunk
18:53
ObjFW.h: Fix missing imports check-in: 6a4f4bcde1 user: js tags: trunk
Changes

Modified src/runtime/exception.m from [438f4d8af0] to [be0c13750d].

619
620
621
622
623
624
625
626
627
628
629
630
631
632
633

	if (landingpad != 0 && actionrecords != NULL)
		found = find_actionrecord(actionrecords, &lsda, actions,
		    foreign, e, &filter);
	else if (landingpad != 0)
		found = CLEANUP_FOUND;

	if (!found)
		CONTINUE_UNWIND;

	if (actions & _UA_SEARCH_PHASE) {
		if (!(found & HANDLER_FOUND) || foreign)
			CONTINUE_UNWIND;

		/* Cache it so we don't have to search it again in phase 2 */







|







619
620
621
622
623
624
625
626
627
628
629
630
631
632
633

	if (landingpad != 0 && actionrecords != NULL)
		found = find_actionrecord(actionrecords, &lsda, actions,
		    foreign, e, &filter);
	else if (landingpad != 0)
		found = CLEANUP_FOUND;

	if (found == 0)
		CONTINUE_UNWIND;

	if (actions & _UA_SEARCH_PHASE) {
		if (!(found & HANDLER_FOUND) || foreign)
			CONTINUE_UNWIND;

		/* Cache it so we don't have to search it again in phase 2 */