Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:11.4
xemacs
unitialized-variables.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File unitialized-variables.patch of Package xemacs
Index: xemacs-21.5.29/src/extents.c =================================================================== --- xemacs-21.5.29.orig/src/extents.c +++ xemacs-21.5.29/src/extents.c @@ -3119,6 +3119,10 @@ extent_fragment_update (struct window *w gb.glyph = glyph; gb.extent = wrap_extent (e); + /* not used, but necessary to avoid compiler warnings about unitiallized variables */ + gb.findex = 0; + gb.active = 0; + gb.width = 0; Dynarr_add (ef->begin_glyphs, gb); } else if (EQ (glyph, last_glyph)) @@ -3138,6 +3142,10 @@ extent_fragment_update (struct window *w gb.glyph = glyph; gb.extent = wrap_extent (e); + /* not used, but necessary to avoid compiler warnings about unitiallized variables */ + gb.findex = 0; + gb.active = 0; + gb.width = 0; Dynarr_add (ef->end_glyphs, gb); } else if (EQ (glyph, last_glyph))
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor