One last null pointer deref slipped through ;)

This commit is contained in:
Jonas Kulla 2013-09-24 23:00:16 +02:00
parent fe557bca1d
commit e903d8cb0f
1 changed files with 2 additions and 1 deletions

View File

@ -725,7 +725,8 @@ void Window::setContents(Bitmap *value)
{ {
GUARD_DISPOSED; GUARD_DISPOSED;
value->ensureNonMega(); if (value)
value->ensureNonMega();
p->contents = value; p->contents = value;
p->controlsVertDirty = true; p->controlsVertDirty = true;