]> source.dussan.org Git - gitblit.git/commit
Fix NPE when no action can be parsed from the URL
authorFlorian Zschocke <florian.zschocke@devolo.de>
Sun, 10 Nov 2019 23:10:43 +0000 (00:10 +0100)
committerFlorian Zschocke <florian.zschocke@devolo.de>
Sun, 10 Nov 2019 23:10:43 +0000 (00:10 +0100)
commita6e4c8e5c7b4e3d3cac23449d472f275399a6222
tree9ef88e2c5b5cc7848a2cdef52b561c18f1bb3380
parent8cba509e912dcf13cc7ab705ab468bd789761533
Fix NPE when no action can be parsed from the URL

Renames `static final` variables according to convention to be in all
upper case. That makes it easier to see that in an `equals` comparison
the final variable should come first as it will not trigger a NPE.

Also strip parameters from the URL when extracting the repository
name from it. Parameters can not be part of a repository name, and
this way an empty repository name can be detected.

Fixes #1092
src/main/java/com/gitblit/servlet/AccessRestrictionFilter.java
src/main/java/com/gitblit/servlet/GitFilter.java
src/test/java/com/gitblit/tests/GitServletTest.java