Bug 1893001 - Fall through to the lower block for Android builds. r=jfkthame

Fixes broken builds with NDK 27 where 'moz_xrealloc' can't be found.

Differential Revision: https://phabricator.services.mozilla.com/D216900
This commit is contained in:
Ryan VanderMeulen 2024-07-23 17:02:39 +00:00
parent 34c60a8bc8
commit 16285037d4

View File

@ -12,7 +12,7 @@
#include "mozilla/mozalloc.h"
#if defined(XP_LINUX)
#if defined(XP_LINUX) && !defined(ANDROID)
#define malloc moz_xmalloc
#define calloc moz_xcalloc