Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/powerpc/oea Add missing va_end; PR 50795 from David...



details:   https://anonhg.NetBSD.org/src/rev/57e82a095a9b
branches:  trunk
changeset: 343559:57e82a095a9b
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sun Feb 14 18:07:49 2016 +0000

description:
Add missing va_end; PR 50795 from David Binderman.

diffstat:

 sys/arch/powerpc/oea/pmap.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r bc3c8fad20ad -r 57e82a095a9b sys/arch/powerpc/oea/pmap.c
--- a/sys/arch/powerpc/oea/pmap.c       Sun Feb 14 18:05:31 2016 +0000
+++ b/sys/arch/powerpc/oea/pmap.c       Sun Feb 14 18:07:49 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.92 2014/08/10 17:49:04 joerg Exp $  */
+/*     $NetBSD: pmap.c,v 1.93 2016/02/14 18:07:49 dholland Exp $       */
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -63,7 +63,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.92 2014/08/10 17:49:04 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.93 2016/02/14 18:07:49 dholland Exp $");
 
 #define        PMAP_NOOPNAMES
 
@@ -3133,6 +3133,7 @@
             (void)pmap_pte_insert(ptegidx, &pte);
         }
     }
+    va_end(ap);
 
     TLBSYNC();
     SYNC();



Home | Main Index | Thread Index | Old Index