Commit b87a7377 authored by Sergei Golubchik's avatar Sergei Golubchik

missing DBUG_RETURNs

parent 5cde0ca7
......@@ -51,7 +51,7 @@ int my_getwd(char * buf, size_t size, myf MyFlags)
(long) buf, (uint) size, MyFlags));
if (size < 1)
return(-1);
DBUG_RETURN(-1);
if (curr_dir[0]) /* Current pos is saved here */
VOID(strmake(buf,&curr_dir[0],size-1));
......@@ -59,12 +59,12 @@ int my_getwd(char * buf, size_t size, myf MyFlags)
{
#if defined(HAVE_GETCWD)
if (size < 2)
return(-1);
DBUG_RETURN(-1);
if (!getcwd(buf,(uint) (size-2)) && MyFlags & MY_WME)
{
my_errno=errno;
my_error(EE_GETWD,MYF(ME_BELL+ME_WAITTANG),errno);
return(-1);
DBUG_RETURN(-1);
}
#elif defined(HAVE_GETWD)
{
......@@ -74,12 +74,12 @@ int my_getwd(char * buf, size_t size, myf MyFlags)
}
#elif defined(VMS)
if (size < 2)
return(-1);
DBUG_RETURN(-1);
if (!getcwd(buf,size-2,1) && MyFlags & MY_WME)
{
my_errno=errno;
my_error(EE_GETWD,MYF(ME_BELL+ME_WAITTANG),errno);
return(-1);
DBUG_RETURN(-1);
}
intern_filename(buf,buf);
#else
......
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