Commit c63f2e3f authored by unknown's avatar unknown

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

parent ddd38de9
......@@ -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 */
if (unlikely(!Count))
return 0;
DBUG_RETURN(0);
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