| View previous topic :: View next topic |
| Author |
Message |
James Craig Ziegler Guest
|
Posted: Thu Jun 24, 1999 5:58 pm Post subject: MyODBC bug in lib/net.c |
|
|
MyODBC crashed in lib.net.c at line 461
was:
if (((int) length=raw_net_read(...) <=0 )
when MicroS... returned a length of 4064586
I changed it to
now:
if (( length=raw_net_read(...) <=0L )
which seemed to fix the problem.
-----------------------------------
[email]jczjcz (AT) ibm (DOT) net[/email] (James Craig Ziegler)
|
|
| Back to top |
|
 |
Michael Widenius Guest
|
Posted: Tue Jun 29, 1999 2:28 am Post subject: MyODBC bug in lib/net.c |
|
|
| Quote: | "James" == James Craig Ziegler <jczjcz (AT) ibm (DOT) net> writes:
|
James> MyODBC crashed in lib.net.c at line 461
James> was:
James> if (((int) length=raw_net_read(...) <=0 )
James> when MicroS... returned a length of 4064586
James> I changed it to
James> now:
James> if (( length=raw_net_read(...) <=0L )
James> which seemed to fix the problem.
Fixed. Thanks!
Regards,
Monty
|
|
| Back to top |
|
 |
|