mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Check for nil bundle identifier (eg early in initialization)
This commit is contained in:
parent
30d66f525b
commit
597d10d9cf
1 changed files with 1 additions and 1 deletions
|
@ -2096,7 +2096,7 @@ static BOOL isPlistObject(id o)
|
|||
_lastSync = saved;
|
||||
}
|
||||
// Check and if not existent add the Application and the Global domains
|
||||
if ([_persDomains objectForKey: bundleIdentifier] == nil)
|
||||
if (bundleIdentifier && [_persDomains objectForKey: bundleIdentifier] == nil)
|
||||
{
|
||||
GSPersistentDomain *pd;
|
||||
|
||||
|
|
Loading…
Reference in a new issue