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 573529 - In gstrtspconnection.c some functions are called with wrong arguments on win32
In gstrtspconnection.c some functions are called with wrong arguments on win32
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
git master
Other Windows
: Normal normal
: 0.10.23
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-02-28 11:50 UTC by LRN
Modified: 2009-02-28 18:36 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Two win32-specific typecasts and one undeclared variable (1.20 KB, patch)
2009-02-28 11:51 UTC, LRN
committed Details | Review

Description LRN 2009-02-28 11:50:26 UTC
accept() takes int (not uint) address_len
getsockopt() takes char* (not uchar*) errno
flags is undefined
Comment 1 LRN 2009-02-28 11:51:01 UTC
Created attachment 129735 [details] [review]
Two win32-specific typecasts and one undeclared variable
Comment 2 Sebastian Dröge (slomo) 2009-02-28 18:36:54 UTC
commit e5d2d32bbaf6bf4541ad69e3730bd721f431a1e9
Author: LRN <lrn1986@gmail.com>
Date:   Sat Feb 28 19:35:33 2009 +0100

    rtspconnection: Use correct types for some functions on Win32
    
    Fixes bug #573529.