Commit d11539ee authored by kaa@polly.(none)'s avatar kaa@polly.(none)

Merge ssh://bk-internal.mysql.com//home/bk/mysql-5.0-maint

into  polly.(none):/home/kaa/src/maint/mysql-5.0-maint
parents 1cf8aaff 2c9720c2
......@@ -29,6 +29,10 @@ uint my_write(int Filedes, const byte *Buffer, uint Count, myf MyFlags)
Filedes, (long) Buffer, Count, MyFlags));
errors=0; written=0L;
/* The behavior of write(fd, buf, 0) is not portable */
if (unlikely(!Count))
return 0;
for (;;)
{
if ((writenbytes = (uint) write(Filedes, Buffer, Count)) == Count)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment