1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Fixed a warning for a possibly uninitialized variable in the new iob hook

code.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14838 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-02-21 16:09:44 +00:00
parent c4c25649f2
commit 53d99ac7a2
4 changed files with 17 additions and 9 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: stdio_iobhookentry.c,v 1.3 2005-02-20 13:19:40 obarthel Exp $
* $Id: stdio_iobhookentry.c,v 1.4 2005-02-21 16:09:41 obarthel Exp $
*
* :ts=4
*
@ -62,6 +62,9 @@ __iob_hook_entry(
if(fd == NULL)
{
fam->fam_Error = EBADF;
result = -1;
break;
}