Fix for UNIX specific bug: 10180.

This commit is contained in:
sgehani%netscape.com 1999-08-18 05:51:58 +00:00
Родитель ec25d487c0
Коммит 08c4e213f8
1 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -630,14 +630,20 @@ static REGERR vr_FindKey(char *component_path, HREG *hreg, RKEY *key)
if (unixreg != NULL) {
*hreg = unixreg;
rootkey = UNIX_ROOT(component_path);
err = NR_RegGetKey( *hreg, rootkey, component_path, key );
if (rootkey)
err = NR_RegGetKey( *hreg, rootkey, component_path, key );
else
err = REGERR_NOFIND;
}
if (unixreg == NULL || err == REGERR_NOFIND )
#endif
{
*hreg = vreg;
rootkey = PATH_ROOT(component_path);
err = NR_RegGetKey( *hreg, rootkey, component_path, key );
if (rootkey)
err = NR_RegGetKey( *hreg, rootkey, component_path, key );
else
err = REGERR_NOFIND;
}
return err;