(svn r20029) -Fix: the 64 bits TortoiseSVN wasn't always properly detected

This commit is contained in:
rubidium 2010-06-28 13:52:09 +00:00
parent 5297eb5722
commit 0599cb67ce
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ Function DetermineSVNVersion()
Dim sTortoise
' First, try with 32-bit architecture
sTortoise = ReadRegistryKey("HKLM", "SOFTWARE\TortoiseSVN", "Directory", 32)
If sTortoise = "" Then
If sTortoise = "" Or IsNull(sTortoise) Then
' No 32-bit version of TortoiseSVN installed, try 64-bit version (doesn't hurt on 32-bit machines, it returns nothing or is ignored)
sTortoise = ReadRegistryKey("HKLM", "SOFTWARE\TortoiseSVN", "Directory", 64)
End If