Fix places passing "" where the null pointer (value 0) is more appropriate.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16160 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2003-03-10 12:57:43 +00:00
parent 986aba22b5
commit df823d3b4e

View file

@ -632,7 +632,7 @@ handle_printf_atsign (FILE *stream,
}
else
{
self = [self initWithCharactersNoCopy: (unichar*)""
self = [self initWithCharactersNoCopy: (unichar*)0
length: 0
freeWhenDone: NO];
}
@ -704,7 +704,7 @@ handle_printf_atsign (FILE *stream,
}
else
{
self = [self initWithCharactersNoCopy: (unichar*)""
self = [self initWithCharactersNoCopy: (unichar*)0
length: 0
freeWhenDone: NO];
}
@ -768,7 +768,7 @@ handle_printf_atsign (FILE *stream,
}
else
{
self = [self initWithCharactersNoCopy: (unichar*)""
self = [self initWithCharactersNoCopy: (unichar*)0
length: 0
freeWhenDone: NO];
}
@ -1148,7 +1148,7 @@ handle_printf_atsign (FILE *stream,
if (len == 0)
{
self = [self initWithCharactersNoCopy: (unichar*)""
self = [self initWithCharactersNoCopy: (unichar*)0
length: 0
freeWhenDone: NO];
}
@ -1245,7 +1245,7 @@ handle_printf_atsign (FILE *stream,
}
if (len == 0)
{
self = [self initWithCharactersNoCopy: (unichar*)""
self = [self initWithCharactersNoCopy: (unichar*)0
length: 0
freeWhenDone: NO];
}
@ -1395,7 +1395,7 @@ handle_printf_atsign (FILE *stream,
- (id) init
{
self = [self initWithCharactersNoCopy: (unichar*)""
self = [self initWithCharactersNoCopy: (unichar*)0
length: 0
freeWhenDone: 0];
return self;