Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions executor/common_windows.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2017 syzkaller project authors. All rights reserved.

Check failure on line 1 in executor/common_windows.h

View workflow job for this annotation

GitHub Actions / aux

The file is not formatted/regenerated. Run 'make generate' and include it into the commit.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.

// This file is shared between executor and csource package.
Expand All @@ -8,9 +8,7 @@
#include <windows.h>

#if SYZ_EXECUTOR || SYZ_HANDLE_SEGV
static void install_segv_handler()
{
}
static void install_segv_handler(){}

#define NONFAILING(...) \
([&]() { __try { __VA_ARGS__; } __except (EXCEPTION_EXECUTE_HANDLER) { return false; } return true; }())
Expand Down
Loading