Fix SSL_CTX_set1_curves fuzzer.

SSL_CTX_set1_curves was being called with the size of the input data in
bytes rather than in ints.

BUG=chromium:659361

Change-Id: I90da1c6d60e92423c6b7d9efd744ae70ff589172
Reviewed-on: https://boringssl-review.googlesource.com/11840
Commit-Queue: David Benjamin <davidben@google.com>
Reviewed-by: Adam Langley <agl@google.com>
This commit is contained in:
David Benjamin 2016-10-26 09:58:16 -04:00 committed by Adam Langley
parent a1bbacac51
commit 9415a14acf

View File

@ -399,7 +399,7 @@ static const std::function<void(SSL_CTX *, CBS *)> kAPIs[] = {
return;
}
SSL_CTX_set1_curves(ctx, reinterpret_cast<const int *>(curves.data()),
curves.size());
curves.size() / sizeof(int));
},
[](SSL_CTX *ctx, CBS *cbs) {
std::string curves;