After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 311662 - "uninitialized value" warning causes build to fail
"uninitialized value" warning causes build to fail
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins
0.8.x
Other Linux
: Normal trivial
: 0.8.11
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2005-07-26 21:51 UTC by John Cannon
Modified: 2005-07-27 15:48 UTC
See Also:
GNOME target: ---
GNOME version: 2.9/2.10



Description John Cannon 2005-07-26 21:51:32 UTC
Distribution/Version: Gentoo

Try building the x264 plugin (have libx264 installed).  There will be a warning
about a value possiblky being used uninitialized.  The root of the problem is
that the pointer "ext" is not initialized before it is used in an if statement
where it is also assigned.  As far as I can see there is no real bug here except
that the warning causes compilation to fail. It can be fixed by initializing the
pointer to NULL at line 344.
Comment 1 Ronald Bultje 2005-07-27 15:48:42 UTC
2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>

        * ext/x264/x264enc.c: (gst_x264enc_chain):
          Possibly uninitialized value (#311662).