Fix crash in MouseCursor::CopyOf()

This issue was causing test failures with the latest webrtc roll.

R=mallinath@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/7249005

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5392 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
sergeyu@chromium.org 2014-01-16 04:45:35 +00:00
parent 8f35afab8c
commit fb4e256d49

View File

@ -27,9 +27,10 @@ MouseCursor::~MouseCursor() {}
// static
MouseCursor* MouseCursor::CopyOf(const MouseCursor& cursor) {
return new MouseCursor(
cursor.image() ? NULL : BasicDesktopFrame::CopyOf(*cursor.image()),
cursor.hotspot());
return cursor.image()
? new MouseCursor(BasicDesktopFrame::CopyOf(*cursor.image()),
cursor.hotspot())
: new MouseCursor();
}
} // namespace webrtc