Re: [GnomeMeeting-devel-list] Re: I GOT THE PROBLEM! :) :) :)



Here are two simple patches that change the logic and fix it.

Can you try them?

Thanks,

Le jeudi 14 avril 2005 à 21:43 +0200, Damien Sandras a écrit :
> Le jeudi 14 avril 2005 à 18:38 +0200, Jan Schiefer a écrit :
> 
> > We should forward this to the OPAL guys. I'm sure they are able to
> > handle this betther. You have a good connection to them, I'm sure you
> > find the right guy. :)
> > 
> 
> Currently I'm the only one to be active on OPAL unfortunately, but I
> have a patch to make you test, please be patient :)
-- 
 _      Damien Sandras
(o-     GnomeMeeting: http://www.gnomemeeting.org/
//\     FOSDEM 2005 : http://www.fosdem.org
v_/_    H.323 phone : callto:ils.seconix.com/dsandras seconix com
? Makefile
Index: src/sip/sipep.cxx
===================================================================
RCS file: /cvsroot/openh323/opal/src/sip/sipep.cxx,v
retrieving revision 2.41
diff -r2.41 sipep.cxx
354c354
<   } while (transport->IsOpen() && transport->IsReliable() && transport->good());
---
>   } while (transport->IsOpen() && transport->IsReliable() && !transport->bad());
Index: src/sip/sippdu.cxx
===================================================================
RCS file: /cvsroot/openh323/opal/src/sip/sippdu.cxx,v
retrieving revision 2.47
diff -r2.47 sippdu.cxx
1265,1266c1265,1266
< #endif                                                   
<     transport.clear(ios::badbit);
---
> #endif                  
>       transport.clear(ios::badbit);
1267a1268
>   transport.clear();
1269c1270
<   if (transport.good()) {
---
>   if (!transport.bad()) {
1274c1275
<   if (!transport.good()) {
---
>   if (transport.bad()) {
Index: src/ptclib/inetprot.cxx
===================================================================
RCS file: /cvsroot/openh323/pwlib/src/ptclib/inetprot.cxx,v
retrieving revision 1.59
diff -r1.59 inetprot.cxx
740c740
<   while (strm.good()) {
---
>   while (!strm.bad()) {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]