mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Autosyncing with Wine HEAD
svn path=/trunk/; revision=27927
This commit is contained in:
@@ -784,6 +784,9 @@ BOOL WINAPI VerQueryValueA( LPCVOID pBlock, LPCSTR lpSubBlock,
|
||||
TRACE("(%p,%s,%p,%p)\n",
|
||||
pBlock, debugstr_a(lpSubBlock), lplpBuffer, puLen );
|
||||
|
||||
if (!pBlock)
|
||||
return FALSE;
|
||||
|
||||
if ( !VersionInfoIs16( info ) )
|
||||
{
|
||||
BOOL ret;
|
||||
@@ -836,6 +839,9 @@ BOOL WINAPI VerQueryValueW( LPCVOID pBlock, LPCWSTR lpSubBlock,
|
||||
TRACE("(%p,%s,%p,%p)\n",
|
||||
pBlock, debugstr_w(lpSubBlock), lplpBuffer, puLen );
|
||||
|
||||
if (!pBlock)
|
||||
return FALSE;
|
||||
|
||||
if ( VersionInfoIs16( info ) )
|
||||
{
|
||||
BOOL ret;
|
||||
|
||||
@@ -64,6 +64,26 @@ Index: info.c
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -784,6 +784,9 @@
|
||||
TRACE("(%p,%s,%p,%p)\n",
|
||||
pBlock, debugstr_a(lpSubBlock), lplpBuffer, puLen );
|
||||
|
||||
+ if (!pBlock)
|
||||
+ return FALSE;
|
||||
+
|
||||
if ( !VersionInfoIs16( info ) )
|
||||
{
|
||||
BOOL ret;
|
||||
@@ -836,6 +839,9 @@
|
||||
TRACE("(%p,%s,%p,%p)\n",
|
||||
pBlock, debugstr_w(lpSubBlock), lplpBuffer, puLen );
|
||||
|
||||
+ if (!pBlock)
|
||||
+ return FALSE;
|
||||
+
|
||||
if ( VersionInfoIs16( info ) )
|
||||
{
|
||||
BOOL ret;
|
||||
Index: install.c
|
||||
===================================================================
|
||||
--- install.c (revision 23123)
|
||||
|
||||
Reference in New Issue
Block a user