Skip to content

Commit

Permalink
make clang-format happy
Browse files Browse the repository at this point in the history
  • Loading branch information
franziskuskiefer committed Jan 26, 2017
1 parent 3a1a9b8 commit b08608a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fuzz/certDN_target.cc
Expand Up @@ -6,8 +6,8 @@

#include "shared.h"

#define TEST_FUNCTION(f) \
out = f(certName); \
#define TEST_FUNCTION(f) \
out = f(certName); \
free(out);

extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
Expand All @@ -17,7 +17,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {

CERTName* certName = CERT_AsciiToName(name.c_str());
if (certName) {
char *out;
char* out;
TEST_FUNCTION(CERT_NameToAscii)
TEST_FUNCTION(CERT_GetCertEmailAddress)

Expand Down

0 comments on commit b08608a

Please sign in to comment.