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 334112 - variable not initialized
variable not initialized
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
git master
Other Linux
: Normal normal
: 0.10.4
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-03-10 10:38 UTC by Edward Hervey
Modified: 2006-03-10 10:45 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
fix (1.86 KB, patch)
2006-03-10 10:39 UTC, Edward Hervey
committed Details | Review

Description Edward Hervey 2006-03-10 10:38:42 UTC
In gsttypefindfunctions, the data_end variable is not initialized and gcc complains about that at compile time.

gsttypefindfunctions.c: In function `mp3_type_find_at_offset':
gsttypefindfunctions.c:589: warning: 'data_end' might be used uninitialized in this function
make[3]: *** [libgsttypefindfunctions_la-gsttypefindfunctions.lo] Error 1
Comment 1 Edward Hervey 2006-03-10 10:39:48 UTC
Created attachment 61026 [details] [review]
fix
Comment 2 Edward Hervey 2006-03-10 10:45:32 UTC
commited

2006-03-10  Edward Hervey  <edward@fluendo.com>

	* gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
	Fix for variable not initialized.