mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-11 08:40:44 +00:00
Fixed uninitialised variable
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11760 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d94e39aa9f
commit
a0f08d36d8
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ static NSMutableSet *textNodes = nil;
|
||||||
inUnit: (NSString*)u
|
inUnit: (NSString*)u
|
||||||
isRef: (BOOL)f
|
isRef: (BOOL)f
|
||||||
{
|
{
|
||||||
NSString *s;
|
NSString *s = nil;
|
||||||
BOOL isLocal = YES;
|
BOOL isLocal = YES;
|
||||||
NSString *kind = (f == YES) ? @"href" : @"name";
|
NSString *kind = (f == YES) ? @"href" : @"name";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue