Short circuit HS processing after displaying error page.
authorwassa <wassa@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Tue, 4 Feb 2003 21:36:16 +0000 (21:36 +0000)
committerwassa <wassa@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Tue, 4 Feb 2003 21:36:16 +0000 (21:36 +0000)
git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@448 ab3bd59b-922f-494d-bb5f-6f0a3c29deca

src/edu/internet2/middleware/shibboleth/hs/HandleServlet.java

index f4e5adf..ebcc7af 100644 (file)
@@ -241,9 +241,11 @@ public class HandleServlet extends HttpServlet {
                } catch (HandleException ex) {
                        log.error(ex);
                        handleError(req, res, ex);
+                       return;
                } catch (SAMLException ex) {
                        log.error(ex);
                        handleError(req, res, ex);
+                       return;
                }
 
        }