Skip to content

Commit 667d377

Browse files
Marc-André Moreauawakecoding
Marc-André Moreau
authored andcommitted
fix TSCoreProps sanity check on Windows Server 2016
1 parent 32a26ee commit 667d377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dll/TSObjects.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ bool TsPropertyMap_IsCoreProps(ITSPropertySet* pTSPropertySet)
8080
propCount = pTSPropertySet->propCount;
8181
propMap = pTSPropertySet->propMap;
8282

83-
if ((propCount < 175) || (propCount > 500))
83+
if ((propCount < 100) || (propCount > 500))
8484
return false;
8585

8686
if (!MsRdpEx_CanReadUnsafePtr((void*)propMap, propCount * sizeof(PROPERTY_ENTRY_EX)))

0 commit comments

Comments
 (0)