From 6832f91958e6c2cc44a8c4a4e126ea20b8c8d5a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Tue, 30 Aug 2022 02:19:56 +0200 Subject: Fix Unique Good, Bad. Simplify HTML parser. Good and Bad should obviously do the exact opposite thing to what they did. --- c/data.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'c/data.h') diff --git a/c/data.h b/c/data.h index 171edaa..0f00ecb 100644 --- a/c/data.h +++ b/c/data.h @@ -120,11 +120,11 @@ struct FileView { hf = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr); - if (!hf.Bad(INVALID_HANDLE_VALUE)) { + if (hf.Bad(INVALID_HANDLE_VALUE)) { if (GetLastError() == ERROR_FILE_NOT_FOUND) { hf = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, nullptr, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, nullptr); - if (!hf.Bad(INVALID_HANDLE_VALUE)) + if (hf.Bad(INVALID_HANDLE_VALUE)) throw Win32Error(); } else throw Win32Error(); @@ -134,11 +134,11 @@ struct FileView cbMap.QuadPart = c*sizeof(T); hm = CreateFileMapping(hf.v, nullptr, PAGE_READWRITE, cbMap.HighPart, cbMap.LowPart, nullptr); - if (!hm.Bad(0)) + if (hm.Bad(0)) throw Win32Error(); view = reinterpret_cast(MapViewOfFile(hm.v, FILE_MAP_ALL_ACCESS, 0, 0, 0)); - if (!view.Bad(0)) + if (view.Bad(0)) throw Win32Error(); } -- cgit v1.2.3