Fix uninitialised variable

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27177 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2008-11-30 14:06:15 +00:00
parent 5df9b0ddb3
commit bacf599365
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-11-30 Richard Frith-Macdonald <rfm@gnu.org>
* Source/GSLayoutManager.m: Fix uninitialised variable ... but is the
fix correct?
2008-11-29 00:40-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Source/GSNibCompatibility.m: Added back in _root assignment in

View file

@ -778,7 +778,7 @@ Fills in all glyph holes up to last. only looking at levels below level
if (!r->glyphs)
{
// range, but no glyphs, may be an empty glyph run
*rindex = i;
*rindex = 0; // FIXME ... is this right?
*rpos = pos;
*rcpos = cpos;
return r;