Skip to content

Commit bb457c6

Browse files
authored
Add missing #include <cstdlib>, required for abort(). (#7139)
This is masked when using OpenSSL (which includes it for us) but causes the build to be broken with BoringSSL.
1 parent edb9408 commit bb457c6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Firestore/core/src/util/secure_random_openssl.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
#if HAVE_OPENSSL_RAND_H
2222

23+
#include <cstdlib>
24+
2325
#include "openssl/err.h"
2426
#include "openssl/rand.h"
2527

0 commit comments

Comments
 (0)