]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fscanf.c
va_end() was missing. Fixed.
[pdclib] / functions / stdio / fscanf.c
index 39962573100444c39e1d3efeb1875043ddf46dcd..bc5bebfe523e4192278a6667e814a87c8f37c54f 100644 (file)
@@ -1,7 +1,5 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* fscanf( FILE *, const char *, ... )
 
    This file is part of the Public Domain C Library (PDCLib).
 
 int fscanf( FILE * _PDCLIB_restrict stream, const char * _PDCLIB_restrict format, ... )
 {
+    int rc;
     va_list ap;
     va_start( ap, format );
-    return vfscanf( stream, format, ap );
+    rc = vfscanf( stream, format, ap );
+    va_end( ap );
+    return rc;
 }
 
 #endif