Bug 595194 - CGL context creation crashes on Mac Tryserver - r=bas.schouten a=blocking2.0

--HG--
extra : rebase_source : b8e2bfde25a0acb33258e77ebd36959c91f73af8
This commit is contained in:
Benoit Jacob 2010-09-10 12:19:09 -04:00
Родитель 867697e6f2
Коммит a8af75d125
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -515,7 +515,7 @@ GLContextProviderCGL::GetGlobalContext()
gGlobalContext = CreateOffscreenFBOContext(gfxIntSize(16, 16),
ContextFormat(ContextFormat::BasicRGB24),
PR_FALSE);
if (gGlobalContext && !static_cast<GLContextCGL*>(gGlobalContext.get())->Init()) {
if (!gGlobalContext || !static_cast<GLContextCGL*>(gGlobalContext.get())->Init()) {
NS_WARNING("Couldn't init gGlobalContext.");
gGlobalContext = nsnull;
return nsnull;