Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2014-10-10 00:55:32 +0400
committerAdam Langley <agl@google.com>2014-10-10 01:03:11 +0400
commitb1659f597b48d3efdd3d56c97d14185439b910e5 (patch)
tree39aeaa74f74581329cfa7ab32009c78115f31ee4 /crypto/err/err_test.c
parent57e52f2a633fe7849ac4eebd9f5cbd6f12fba30d (diff)
Fix err_test.
ERR_FLAG_MALLOCED is now masked and isn't returned through ERR_get_error_line_data. Change-Id: Ida633bf1a5ca01f563c1323dbdfb2433c2ab5159 Reviewed-on: https://boringssl-review.googlesource.com/1910 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/err/err_test.c')
-rw-r--r--crypto/err/err_test.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/err/err_test.c b/crypto/err/err_test.c
index cb100fe5..ed0156a1 100644
--- a/crypto/err/err_test.c
+++ b/crypto/err/err_test.c
@@ -58,7 +58,6 @@ static int test_put_error(void) {
if (strcmp(file, "test") != 0 ||
line != 4 ||
(flags & ERR_FLAG_STRING) == 0 ||
- (flags & ERR_FLAG_MALLOCED) == 0 ||
ERR_GET_LIB(packed_error) != 1 ||
ERR_GET_FUNC(packed_error) != 2 ||
ERR_GET_REASON(packed_error) != 3 ||