Fix possible NPE.

This commit is contained in:
Kris Wong 2010-12-17 17:25:27 +00:00
parent 3dd777053c
commit bb5052f848
1 changed files with 1 additions and 1 deletions

View File

@ -741,7 +741,7 @@ public class WebDavStore extends Store
if (formAction == null)
{
// If there is no form action, try using our redirect URL from the initial connection.
if (info.redirectUrl != null && !info.redirectUrl.equals(""))
if (info != null && info.redirectUrl != null && !info.redirectUrl.equals(""))
{
loginUrl = info.redirectUrl;