From 51e966edf2660cff4842c14c87e07e48f7c2b85f Mon Sep 17 00:00:00 2001 From: whitequark Date: Thu, 31 Dec 2015 21:09:24 +0800 Subject: [PATCH] Commit missing parts of 0b69e488. --- artiq/runtime/artiq_personality.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/runtime/artiq_personality.c b/artiq/runtime/artiq_personality.c index d5ba26b24..664f43a1f 100644 --- a/artiq/runtime/artiq_personality.c +++ b/artiq/runtime/artiq_personality.c @@ -422,7 +422,7 @@ _Unwind_Reason_Code __artiq_personality( encodingSize, typeInfoPtrPtr, (void*)typeInfoPtr); EH_LOG("typeInfo=%s", (char*)typeInfoPtr); - if(typeInfoPtr == 0 || inflight->artiq.typeinfo == typeInfoPtr) { + if(typeInfoPtr == 0 || !strcmp(inflight->artiq.typeinfo, typeInfoPtr)) { EH_LOG0("matching action found"); exceptionMatched = 1; break;