Ken Thomases : mountmgr: Avoid operating on a null CFStringRef, which would crash.

Alexandre Julliard julliard at winehq.org
Thu Sep 10 16:21:44 CDT 2020


Module: wine
Branch: master
Commit: 7e312c346cc94f093d82324f9020ac5595464f61
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=7e312c346cc94f093d82324f9020ac5595464f61

Author: Ken Thomases <ken at codeweavers.com>
Date:   Wed Sep  9 14:21:49 2020 -0500

mountmgr: Avoid operating on a null CFStringRef, which would crash.

Signed-off-by: Ken Thomases <ken at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mountmgr.sys/diskarb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mountmgr.sys/diskarb.c b/dlls/mountmgr.sys/diskarb.c
index 3d531b95ee..12da89d768 100644
--- a/dlls/mountmgr.sys/diskarb.c
+++ b/dlls/mountmgr.sys/diskarb.c
@@ -298,7 +298,7 @@ static CFStringRef find_service_id( const WCHAR *adapter )
 
         service = CFArrayGetValueAtIndex( services, i );
         name = SCNetworkInterfaceGetBSDName( SCNetworkServiceGetInterface(service) );
-        if (CFStringGetLength( name ) < ARRAY_SIZE( buf ))
+        if (name && CFStringGetLength( name ) < ARRAY_SIZE( buf ))
         {
             CFStringGetCharacters( name, CFRangeMake(0, CFStringGetLength(name)), buf );
             if (!lstrcmpW( buf, unix_name ) && (id = SCNetworkServiceGetServiceID( service )))




More information about the wine-cvs mailing list