Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Klass <kissaki@posteo.de>2017-07-10 20:21:53 +0300
committerJan Klass <kissaki@posteo.de>2017-07-13 14:18:09 +0300
commit36fc0f1b67339819253acdae7ccfd723ab179521 (patch)
treec2c0045fd3874e4df5ad86bdf4cf91157eb20c71 /overlay/d3d10.cpp
parent7689647a5028bfb4ce96c26caee6e1e955fa02a0 (diff)
overlay: Use size_t as correct type for memory addresses
Use correct types for handling pointer size/memory addresses. Make use of boost optional as GetFnOffsetInModules return type. The unsigned return type does not allow for negative error values anymore, which we did not make use of anyway, and optional is more explicit. Replaces workaround/error detection from the commits 114495e59f002531ac9bb02070a1bcbd6652669e a3e7958f1605339560679cbbd3a27de4fd12066c Fixes #1924
Diffstat (limited to 'overlay/d3d10.cpp')
-rw-r--r--overlay/d3d10.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/overlay/d3d10.cpp b/overlay/d3d10.cpp
index 31b3041f5..0d7b71aaf 100644
--- a/overlay/d3d10.cpp
+++ b/overlay/d3d10.cpp
@@ -716,13 +716,13 @@ void PrepareDXGI10(IDXGIAdapter1 *pAdapter, bool initializeDXGIData) {
void ***vtbl = (void ***) pSwapChain;
void *pPresent = (*vtbl)[8];
- int offset = GetFnOffsetInModule(reinterpret_cast<voidFunc>(pPresent), dxgi->wcFileName, ARRAY_NUM_ELEMENTS(dxgi->wcFileName), "D3D10", "Present");
- if (offset >= 0) {
+ boost::optional<size_t> offset = GetFnOffsetInModule(reinterpret_cast<voidFunc>(pPresent), dxgi->wcFileName, ARRAY_NUM_ELEMENTS(dxgi->wcFileName), "D3D10", "Present");
+ if (offset) {
if (initializeDXGIData) {
- dxgi->offsetPresent = offset;
+ dxgi->offsetPresent = *offset;
ods("D3D10: Successfully found Present offset: %ls: %d", dxgi->wcFileName, dxgi->offsetPresent);
} else {
- if (dxgi->offsetPresent == offset) {
+ if (dxgi->offsetPresent == *offset) {
ods("D3D10: Successfully verified Present offset: %ls: %d", dxgi->wcFileName, dxgi->offsetPresent);
} else {
ods("D3D10: Failed to verify Present offset for %ls. Found %d, but previously found %d.", dxgi->wcFileName, offset, dxgi->offsetPresent);
@@ -732,12 +732,12 @@ void PrepareDXGI10(IDXGIAdapter1 *pAdapter, bool initializeDXGIData) {
void *pResize = (*vtbl)[13];
offset = GetFnOffsetInModule(reinterpret_cast<voidFunc>(pResize), dxgi->wcFileName, ARRAY_NUM_ELEMENTS(dxgi->wcFileName), "D3D10", "ResizeBuffers");
- if (offset >= 0) {
+ if (offset) {
if (initializeDXGIData) {
- dxgi->offsetResize = offset;
+ dxgi->offsetResize = *offset;
ods("D3D10: Successfully found ResizeBuffers offset: %ls: %d", dxgi->wcFileName, dxgi->offsetResize);
} else {
- if (dxgi->offsetResize == offset) {
+ if (dxgi->offsetResize == *offset) {
ods("D3D10: Successfully verified ResizeBuffers offset: %ls: %d", dxgi->wcFileName, dxgi->offsetResize);
} else {
ods("D3D10: Failed to verify ResizeBuffers offset for %ls. Found %d, but previously found %d.", dxgi->wcFileName, offset, dxgi->offsetResize);
@@ -749,15 +749,15 @@ void PrepareDXGI10(IDXGIAdapter1 *pAdapter, bool initializeDXGIData) {
void *pAddRef = (*vtbl)[1];
offset = GetFnOffsetInModule(reinterpret_cast<voidFunc>(pAddRef), d3d10->wcFileName, ARRAY_NUM_ELEMENTS(d3d10->wcFileName), "D3D10", "AddRef");
- if (offset >= 0) {
- d3d10->offsetAddRef = offset;
+ if (offset) {
+ d3d10->offsetAddRef = *offset;
ods("D3D10: Successfully found AddRef offset: %ls: %d", d3d10->wcFileName, d3d10->offsetAddRef);
}
void *pRelease = (*vtbl)[2];
offset = GetFnOffsetInModule(reinterpret_cast<voidFunc>(pRelease), d3d10->wcFileName, ARRAY_NUM_ELEMENTS(d3d10->wcFileName), "D3D10", "Release");
- if (offset >= 0) {
- d3d10->offsetRelease = offset;
+ if (offset) {
+ d3d10->offsetRelease = *offset;
ods("D3D10: Successfully found Release offset: %ls: %d", d3d10->wcFileName, d3d10->offsetRelease);
}
}