Bug 749750 - Correctly ref created Surfaces on Android r=blassey

This commit is contained in:
James Willcox 2012-04-27 16:10:03 -04:00
Родитель 3f75d415a1
Коммит a3cf6c4897
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2099,7 +2099,7 @@ AndroidBridge::CreateSurface()
jobject surface = env->CallStaticObjectMethod(mGeckoAppShellClass, jCreateSurface);
if (surface)
env->NewGlobalRef(surface);
surface = env->NewGlobalRef(surface);
return surface;
#endif