Fix nul pointer deref

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11206 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2001-10-18 15:42:29 +00:00
parent a4e0d44d31
commit 072e7f0ff5
3 changed files with 8 additions and 2 deletions

View file

@ -637,7 +637,9 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
}
else if ([name isEqual: @"footnote"] == YES)
{
NSLog(@"Element '%@' not implemented", name); // FIXME
[buf appendString: @"<blockquote>"];
[self outputText: children to: buf];
[buf appendString: @"</blockquote>"];
}
else
{