mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
missing DBUG_RETURNs
This commit is contained in:
parent
5cde0ca744
commit
b87a737739
1 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue