mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
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:
parent
5df9b0ddb3
commit
bacf599365
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue