Bug 776898 - vc11 nullptr fix for PluginInstanceParent. r=ehsan

This commit is contained in:
Jim Mathies 2012-07-24 15:07:41 -05:00
Родитель 855e96526b
Коммит e0afc045d4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1922,7 +1922,7 @@ bool
PluginInstanceParent::SharedSurfaceSetWindow(const NPWindow* aWindow,
NPRemoteWindow& aRemoteWindow)
{
aRemoteWindow.window = nsnull;
aRemoteWindow.window = 0;
aRemoteWindow.x = aWindow->x;
aRemoteWindow.y = aWindow->y;
aRemoteWindow.width = aWindow->width;