[PATCH 1/5] qcap: Get rid of V4l_Unprepare().

Zebediah Figura z.figura12 at gmail.com
Wed Apr 10 22:31:59 CDT 2019


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/qcap/v4l.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/dlls/qcap/v4l.c b/dlls/qcap/v4l.c
index 809ce7a406..752751a97b 100644
--- a/dlls/qcap/v4l.c
+++ b/dlls/qcap/v4l.c
@@ -131,11 +131,6 @@ static HRESULT V4l_Prepare(Capture *device)
     return S_OK;
 }
 
-static void V4l_Unprepare(Capture *device)
-{
-    heap_free(device->image_data);
-}
-
 HRESULT qcap_driver_destroy(Capture *capBox)
 {
     TRACE("%p\n", capBox);
@@ -439,7 +434,7 @@ static DWORD WINAPI ReadThread(LPVOID lParam)
         if (FAILED(hr) && hr != VFW_E_NOT_CONNECTED)
         {
             TRACE("Return %x, stop IFilterGraph\n", hr);
-            V4l_Unprepare(capBox);
+            heap_free(capBox->image_data);
             capBox->thread = 0;
             capBox->stopped = TRUE;
             break;
@@ -559,7 +554,7 @@ HRESULT qcap_driver_stop(Capture *capBox, FILTER_STATE *state)
             if (hr != S_OK && hr != VFW_E_NOT_COMMITTED)
                 WARN("Decommitting allocator: %x\n", hr);
         }
-        V4l_Unprepare(capBox);
+        heap_free(capBox->image_data);
     }
 
     *state = State_Stopped;
-- 
2.21.0




More information about the wine-devel mailing list