From e43c4a7a665032a29cb5ec15d4adbf81ea199220 Mon Sep 17 00:00:00 2001 From: Dmitriy Ivanov Date: Sun, 29 Jun 2014 13:00:23 -0700 Subject: [PATCH] Disallow dlopen("egl/blah.so") on LP64 Bug: 7465467 Change-Id: Ibd3a4f1a6095f4397bde4f656e3c11b67f7edd47 --- linker/linker.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/linker/linker.cpp b/linker/linker.cpp index e202aaf83..b99c59a18 100644 --- a/linker/linker.cpp +++ b/linker/linker.cpp @@ -669,8 +669,7 @@ static int open_library(const char* name) { } // ...but nvidia binary blobs (at least) rely on this behavior, so fall through for now. #if defined(__LP64__) - // TODO: uncomment this after bug b/7465467 is fixed. - // return -1; + return -1; #endif }