From 155a094e696ad13ffdbc11607ff9085265f67c0a Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Mon, 3 Jan 2011 18:07:17 +0000 Subject: Fix bug introduced when moving image_data to its own file. TEST=manual (paints on Linux) BUG=none Review URL: http://codereview.chromium.org/6073006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70394 0039d316-1c4b-4281-b951-d872f2087c98 --- ppapi/proxy/image_data.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/ppapi/proxy/image_data.cc b/ppapi/proxy/image_data.cc index 2af7026..65da4bb 100644 --- a/ppapi/proxy/image_data.cc +++ b/ppapi/proxy/image_data.cc @@ -45,7 +45,6 @@ void* ImageData::Map() { mapped_data_ = memory; return mapped_data_; #else - return NULL; int shmkey = handle_; void* address = shmat(shmkey, NULL, 0); // Mark for deletion in case we crash so the kernel will clean it up. -- cgit v1.1