summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Taubert <ttaubert@mozilla.com>2017-01-20 17:24:30 +0100
committerTim Taubert <ttaubert@mozilla.com>2017-01-20 17:24:30 +0100
commit0f0a20c97fb5ddde2626bb614705d16ae61d52aa (patch)
tree0ab5711a5f3149450d7b0fd632bc78d783746e63
parent9f6911e8dcd7d93d15cf1cd0920bf958b386f005 (diff)
downloadnss-hg-0f0a20c97fb5ddde2626bb614705d16ae61d52aa.tar.gz
Bug 1332652 - Fix clang-format bustage r=me
-rw-r--r--fuzz/quickder_target.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/fuzz/quickder_target.cc b/fuzz/quickder_target.cc
index d77baf04c..08df137cb 100644
--- a/fuzz/quickder_target.cc
+++ b/fuzz/quickder_target.cc
@@ -68,13 +68,13 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
char *dest[2048];
for (auto tpl : templates) {
- PORTCheapArenaPool pool;
- SECItem buf = {siBuffer, const_cast<unsigned char *>(Data),
- static_cast<unsigned int>(Size)};
+ PORTCheapArenaPool pool;
+ SECItem buf = {siBuffer, const_cast<unsigned char *>(Data),
+ static_cast<unsigned int>(Size)};
- PORT_InitCheapArena(&pool, DER_DEFAULT_CHUNKSIZE);
- (void)SEC_QuickDERDecodeItem(&pool.arena, dest, tpl, &buf);
- PORT_DestroyCheapArena(&pool);
+ PORT_InitCheapArena(&pool, DER_DEFAULT_CHUNKSIZE);
+ (void)SEC_QuickDERDecodeItem(&pool.arena, dest, tpl, &buf);
+ PORT_DestroyCheapArena(&pool);
}
return 0;