[Bug 62792] Race condition NullpointerException in JspServletWrapper

2018-10-02 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62792 Mark Thomas changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 62792] Race condition NullpointerException in JspServletWrapper

2018-10-02 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62792 --- Comment #2 from Julien Béti --- I would suggest to keep the "if(reload)" outside the synchronized block, and check again inside with "getReloadInternal()" Something like if(reload) { synchronized (this) { if(getReloadInternal()) {

[Bug 62792] Race condition NullpointerException in JspServletWrapper

2018-10-02 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62792 --- Comment #1 from Julien Béti --- Sorry, the caused-by part of the trace was missing: Caused by: java.lang.NullPointerException: null at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:458) ... 74 c

[Bug 62792] Race condition NullpointerException in JspServletWrapper

2018-10-02 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62792 Julien Béti changed: What|Removed |Added Depends on||62603 Referenced Bugs: https://bz.apac