https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c47ad98ff79ad98042ff2…
commit c47ad98ff79ad98042ff2043d739be58770c2fbc
Author: Eric Kohl <eric.kohl(a)reactos.org>
AuthorDate: Thu Jun 6 19:12:44 2019 +0200
Commit: Eric Kohl <eric.kohl(a)reactos.org>
CommitDate: Thu Jun 6 19:12:44 2019 +0200
[SETUPAPI] Fix a typo in CM_Query_Resource_Conflict_List.
---
dll/win32/setupapi/cfgmgr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dll/win32/setupapi/cfgmgr.c b/dll/win32/setupapi/cfgmgr.c
index 8215d47ac63..d33a6497172 100644
--- a/dll/win32/setupapi/cfgmgr.c
+++ b/dll/win32/setupapi/cfgmgr.c
@@ -6761,7 +6761,7 @@ CM_Query_Resource_Conflict_List(
if (lpDevInst == NULL)
return CR_INVALID_DEVNODE;
- pConflictData = MyMalloc(sizeof(CONFLICT_DATA));
+ pConflictData = MyMalloc(sizeof(PCONFLICT_DATA));
if (pConflictData == NULL)
{
ret = CR_OUT_OF_MEMORY;