Skip to content

Commit

Permalink
Bug 1893001 - Fall through to the lower block for Android builds. r=j…
Browse files Browse the repository at this point in the history
…fkthame

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

Differential Revision: https://phabricator.services.mozilla.com/D216900
  • Loading branch information
rvandermeulen committed Jul 23, 2024
1 parent 1582e30 commit ac6fcbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gfx/graphite2/src/MozGrMalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ac6fcbf

Please sign in to comment.