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

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

parent 15e4a8ca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 (;;)
  {