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 133076 - added cast for is{alpha|num}
added cast for is{alpha|num}
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
git master
Other Solaris
: Normal normal
: 0.7.4
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2004-01-31 17:35 UTC by Stefan Sauer (gstreamer, gtkdoc dev)
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
added two casts (353 bytes, patch)
2004-01-31 17:37 UTC, Stefan Sauer (gstreamer, gtkdoc dev)
none Details | Review

Description Stefan Sauer (gstreamer, gtkdoc dev) 2004-01-31 17:35:48 UTC
./gst/gsturi.c

failes with -Wall due to missing cast
Comment 1 Stefan Sauer (gstreamer, gtkdoc dev) 2004-01-31 17:37:12 UTC
Created attachment 23926 [details] [review]
added two casts
Comment 2 David Schleef 2004-02-02 21:20:30 UTC
isalpha() and friends aren't UTF-8 friendly and don't work with ASCII
when not in the POSIX locale (which is the bhavior we want here), so I
changed them to use g_ascii_isalpha().