From d9b08a0bc082643b97fc9b11e0715e95be603c4c Mon Sep 17 00:00:00 2001 From: Dmitriy Ivanov Date: Mon, 16 Nov 2015 13:17:27 -0800 Subject: [PATCH] Fix arm64 and x86 builds Change-Id: Ic3746b2f200f42218b6ac857c1631e873c767c17 --- linker/linker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linker/linker.cpp b/linker/linker.cpp index 32e3063fd..826aa5ee3 100644 --- a/linker/linker.cpp +++ b/linker/linker.cpp @@ -3715,7 +3715,7 @@ static void add_vdso(KernelArgumentBlock& args __unused) { return; } - soinfo* si = soinfo_alloc("[vdso]", nullptr, 0, 0); + soinfo* si = soinfo_alloc(&g_default_namespace, "[vdso]", nullptr, 0, 0); si->phdr = reinterpret_cast(reinterpret_cast(ehdr_vdso) + ehdr_vdso->e_phoff); si->phnum = ehdr_vdso->e_phnum;