summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-10-05 03:00:07 +0200
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-10-05 03:00:07 +0200
commiteda65607e3e49380e2d0cece8a7344224509b2c9 (patch)
tree342b1abc03ac07137125abe36b684004f3803b4e
parent0b0bbb7981351a50c1021bade3242f9cb1ae962a (diff)
parente32b4856308c0c9c7566031022242594fd5425bf (diff)
Merge remote-tracking branch 'origin/5.15' into dev
-rw-r--r--src/serialport/qserialport_win.cpp2
-rw-r--r--src/serialport/qtntdll_p.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/serialport/qserialport_win.cpp b/src/serialport/qserialport_win.cpp
index da1e7aae..c0061fc9 100644
--- a/src/serialport/qserialport_win.cpp
+++ b/src/serialport/qserialport_win.cpp
@@ -246,7 +246,7 @@ bool QSerialPortPrivate::open(QIODevice::OpenMode mode)
{
{
QMutexLocker locker(&helper()->mutex);
- static bool symbolsResolved = resolveSymbols(&helper()->ntLibrary);
+ static bool symbolsResolved = resolveNtdllSymbols(&helper()->ntLibrary);
if (!symbolsResolved) {
setError(QSerialPortErrorInfo(QSerialPort::OpenError,
helper()->ntLibrary.errorString()));
diff --git a/src/serialport/qtntdll_p.h b/src/serialport/qtntdll_p.h
index a8cdaf6a..2e572017 100644
--- a/src/serialport/qtntdll_p.h
+++ b/src/serialport/qtntdll_p.h
@@ -123,14 +123,14 @@ typedef VOID (WINAPI *PIO_APC_ROUTINE) (
static fp_##symbolName symbolName;
#define RESOLVE_SYMBOL(symbolName) \
- symbolName = reinterpret_cast<fp_##symbolName>(resolveSymbol(ntLibrary, #symbolName)); \
+ symbolName = reinterpret_cast<fp_##symbolName>(resolveNtdllSymbol(ntLibrary, #symbolName)); \
if (!symbolName) \
return false;
GENERATE_SYMBOL_VARIABLE(ULONG, RtlNtStatusToDosError, NTSTATUS)
GENERATE_SYMBOL_VARIABLE(NTSTATUS, NtDeviceIoControlFile, HANDLE, HANDLE, PIO_APC_ROUTINE, PVOID, PIO_STATUS_BLOCK, ULONG, PVOID, ULONG, PVOID, ULONG)
-inline QFunctionPointer resolveSymbol(QLibrary *ntLibrary, const char *symbolName)
+inline QFunctionPointer resolveNtdllSymbol(QLibrary *ntLibrary, const char *symbolName)
{
QFunctionPointer symbolFunctionPointer = ntLibrary->resolve(symbolName);
if (!symbolFunctionPointer)
@@ -139,7 +139,7 @@ inline QFunctionPointer resolveSymbol(QLibrary *ntLibrary, const char *symbolNam
return symbolFunctionPointer;
}
-inline bool resolveSymbols(QLibrary *ntLibrary)
+inline bool resolveNtdllSymbols(QLibrary *ntLibrary)
{
if (!ntLibrary->isLoaded()) {
ntLibrary->setFileName(QStringLiteral("ntdll"));