GNOME Bugzilla – Bug 118304
mplex break the build
Last modified: 2004-12-22 21:47:04 UTC
vector.cc on mplex plugin break the build . To solve that problem just come back to previous revision of the files , 1.2 -> 1.1 Anyway here there's the patch RCS file: /cvsroot/gstreamer/gst-plugins/ext/mplex/vector.cc,v retrieving revision 1.2 diff -c -u -p -r1.2 vector.cc cvs server: conflicting specifications of output style --- ext/mplex/vector.cc 25 Jul 2003 10:15:53 -0000 1.2 +++ ext/mplex/vector.cc 25 Jul 2003 14:33:21 -0000 @@ -9,7 +9,7 @@ AUStream::AUStream (): cur_rd (0), cur_wr (0), totalctr (0), size (0), buf (0) { - buf = new (Aunit **)[AUStream::BUF_SIZE]; + buf = new (Aunit *)[AUStream::BUF_SIZE]; } Bye All
Yep, you're right. Applied and fixed, thanks.