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

Replaced 'return' with DBUG_RETURN() in the fix for bug #31566.

parent 15e4a8ca
...@@ -31,7 +31,7 @@ uint my_write(int Filedes, const byte *Buffer, uint Count, myf MyFlags) ...@@ -31,7 +31,7 @@ uint my_write(int Filedes, const byte *Buffer, uint Count, myf MyFlags)
/* The behavior of write(fd, buf, 0) is not portable */ /* The behavior of write(fd, buf, 0) is not portable */
if (unlikely(!Count)) if (unlikely(!Count))
return 0; DBUG_RETURN(0);
for (;;) for (;;)
{ {
......
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