StickyCaptchaServlet doesn't write captcha if it has to create it
Brought to you by:
jchilders235
In the doGet method of the StickyCaptchaServlet servlet, the image is not returned if the captcha needs to be created or needs to be expired.
Specifically, the statement CaptchaServletUtil.writeImage(resp, captcha.getImage()) is not executed because the method returns before reaching it.