GNOME Bugzilla – Bug 311662
"uninitialized value" warning causes build to fail
Last modified: 2005-07-27 15:48:42 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.
2005-07-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net> * ext/x264/x264enc.c: (gst_x264enc_chain): Possibly uninitialized value (#311662).