ossp-pkg/rc/rc_anal.c 1.14 -> 1.15
--- rc_anal.c 2003/05/20 15:06:41 1.14
+++ rc_anal.c 2003/05/26 16:03:56 1.15
@@ -72,10 +72,8 @@
try {
analGloblocs(ppInst);
}
- catch(Except) {
-fprintf(stderr, "Placeholder until ex_ looping bug is fixed.\n");
-/* rethrow;*/ /* FIXME: Ralf! Looping problem with ex_ hier! */
- }
+ catch(Except)
+ rethrow;
}
}
@@ -157,10 +155,8 @@
(*ppInst)->m_pszSecs = vectorCopy(pkszVector);
(*ppInst)->m_nSecs = vectorCount(pkszVector);
}
- ex_catch(Except) {
-TRACE("VectorCopy broke");
-/* rethrow;*/
- }
+ ex_catch(Except)
+ rethrow;
return(RC_THROW(RC_OK));
}
|
|