]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix for #3249 - Added null check
authorArtur Signell <artur.signell@itmill.com>
Mon, 31 Aug 2009 09:57:11 +0000 (09:57 +0000)
committerArtur Signell <artur.signell@itmill.com>
Mon, 31 Aug 2009 09:57:11 +0000 (09:57 +0000)
svn changeset:8596/svn branch:6.1

src/com/vaadin/terminal/gwt/server/CommunicationManager.java

index 4971db4b8b40450d9facd5353ad87a3be244eef2..b3576ed327a290ebd469ce9d4f5db4b7cfaa98df 100644 (file)
@@ -1061,7 +1061,7 @@ public class CommunicationManager implements Paintable.RepaintRequestListener,
 
             // Get the path from URL
             String path = applicationServlet.getRequestPathInfo(request);
-            if (path.startsWith("/UIDL")) {
+            if (path != null && path.startsWith("/UIDL")) {
                 path = path.substring("/UIDL".length());
             }