summaryrefslogtreecommitdiff
path: root/StdLib/LibC/Stdio/fprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'StdLib/LibC/Stdio/fprintf.c')
-rw-r--r--StdLib/LibC/Stdio/fprintf.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/StdLib/LibC/Stdio/fprintf.c b/StdLib/LibC/Stdio/fprintf.c
index ba6ec0c22e..7134c5c5e6 100644
--- a/StdLib/LibC/Stdio/fprintf.c
+++ b/StdLib/LibC/Stdio/fprintf.c
@@ -1,11 +1,11 @@
/** @file
Implementation of fprintf as declared in <stdio.h>.
- Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials are licensed and made available
under the terms and conditions of the BSD License that accompanies this
distribution. The full text of the license may be found at
- http://opensource.org/licenses/bsd-license.php.
+ http://opensource.org/licenses/bsd-license.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@@ -58,6 +58,10 @@ fprintf(FILE *fp, const char *fmt, ...)
_DIAGASSERT(fp != NULL);
_DIAGASSERT(fmt != NULL);
+ if(fp == NULL) {
+ errno = EINVAL;
+ return (EOF);
+ }
va_start(ap, fmt);
ret = vfprintf(fp, fmt, ap);