From b1659f597b48d3efdd3d56c97d14185439b910e5 Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Thu, 9 Oct 2014 16:55:32 -0400 Subject: [PATCH] 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 --- crypto/err/err_test.c | 1 - 1 file changed, 1 deletion(-) 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 ||