| commit | 0b66c85b4d509a54356041ebff3992ada4e243d2 | [log] [tgz] |
|---|---|---|
| author | Rudolf Polzer <rpolzer@google.com> | Thu Dec 11 02:17:51 2025 -0800 |
| committer | Boringssl LUCI CQ <boringssl-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Dec 11 07:36:14 2025 -0800 |
| tree | d40e4fb514efd262293f17d4185b87e8e563a000 | |
| parent | 23db7e0e997af4f959cfc2c5df8f5a036132e923 [diff] |
Fix a missing incldue in `aead.cc.inc`. This only is a problem when parsing the file file alone, although it does evidence current compilation depends on the order of includes in `bcm.cc`, which is bad. Bug: 383343306 Change-Id: I6c8108282ba308945892a8264691b30b3a2dfd5b Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/85529 Commit-Queue: David Benjamin <davidben@google.com> Auto-Submit: Rudolf Polzer <rpolzer@google.com> Reviewed-by: David Benjamin <davidben@google.com>
diff --git a/crypto/fipsmodule/cipher/aead.cc.inc b/crypto/fipsmodule/cipher/aead.cc.inc index 1e477c3..053f9ba 100644 --- a/crypto/fipsmodule/cipher/aead.cc.inc +++ b/crypto/fipsmodule/cipher/aead.cc.inc
@@ -25,6 +25,7 @@ #include <openssl/span.h> #include "../../internal.h" +#include "../../mem_internal.h" #include "internal.h"