[PATCH 3/3] oledb32: Add FIXME for DBTYPE_NUMERIC type

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Tue Jun 20 19:32:58 CDT 2017


The break is not required.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
---
 dlls/oledb32/convert.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dlls/oledb32/convert.c b/dlls/oledb32/convert.c
index 59b2ecd9bd..a5fe30d997 100644
--- a/dlls/oledb32/convert.c
+++ b/dlls/oledb32/convert.c
@@ -1081,7 +1081,11 @@ static HRESULT WINAPI convert_DataConvert(IDataConvert* iface,
         }
         break;
     }
-    break;
+    case DBTYPE_NUMERIC:
+    {
+        FIXME("Unimplemented conversion %04x -> DBTYPE_NUMERIC\n", src_type);
+        return E_NOTIMPL;
+    }
 
     default:
         FIXME("Unimplemented conversion %04x -> %04x\n", src_type, dst_type);
-- 
2.11.0




More information about the wine-patches mailing list