commit | 2056d231e4abdc9584c7d0ae3e3c53372e39d17b | [log] [tgz] |
---|---|---|
author | gwt.team.scottb <gwt.team.scottb@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Apr 20 01:59:39 2007 +0000 |
committer | gwt.team.scottb <gwt.team.scottb@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Apr 20 01:59:39 2007 +0000 |
tree | 69e6868146d3332f06f235706b99837d3bbf8022 | |
parent | c93877bf14b93c05abd8093daa93fbc438a7fb20 [diff] |
Missing null check here. Review by: jat (postmortem) git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@932 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/windows/src/com/google/gwt/dev/shell/ie/ModuleSpaceIE6.java b/dev/windows/src/com/google/gwt/dev/shell/ie/ModuleSpaceIE6.java index d16b710..b24cf05 100644 --- a/dev/windows/src/com/google/gwt/dev/shell/ie/ModuleSpaceIE6.java +++ b/dev/windows/src/com/google/gwt/dev/shell/ie/ModuleSpaceIE6.java
@@ -200,7 +200,9 @@ return new JsValueIE6(result); } } finally { - result.dispose(); + if (result != null) { + result.dispose(); + } } /*