9
0
Fork 0

remove warning

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@2060 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2009-09-16 13:22:01 +00:00
parent bdb9f7915d
commit 7d5c4731d9
1 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
/****************************************************************************
* lib/lib_fclose.c
*
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@ -62,14 +62,14 @@ int fclose(FAR FILE *stream)
{
ret = close(stream->fs_filedes);
}
#ifdef CONFIG_CPP_HAVE_WARNING
# warning REVIEW for race conditions
#endif
#if CONFIG_STDIO_BUFFER_SIZE > 0
/* Destroy the semaphore */
sem_destroy(&stream->fs_sem);
/* release the buffer */
if (stream->fs_bufstart)
{
free(stream->fs_bufstart);
@ -92,6 +92,7 @@ int fclose(FAR FILE *stream)
stream->fs_filedes = -1;
}
return ret;
}