mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
7f776661b8
With this patch we now patch the write functions during shutdown in a debug build and abort if a non white listed write is found.
19 lines
514 B
C++
19 lines
514 B
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* vim:set ts=4 sw=4 sts=4 ci et: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
namespace mozilla {
|
|
void PoisonWrite() {
|
|
}
|
|
void DisableWritePoisoning() {
|
|
}
|
|
}
|
|
extern "C" {
|
|
void MozillaRegisterDebugFD(int fd) {
|
|
}
|
|
void MozillaUnRegisterDebugFD(int fd) {
|
|
}
|
|
}
|