diff options
author | Rich Megginson <rmeggins@redhat.com> | 2010-07-01 16:31:27 -0600 |
---|---|---|
committer | Rich Megginson <rmeggins@redhat.com> | 2010-07-01 16:50:18 -0600 |
commit | 487413c0584081de05a3fd794f30d03de99c00b0 (patch) | |
tree | ae3df9f5e9e385db8d0d4b544a86110f8f5c0106 /lib/libaccess/nseframe.cpp | |
parent | e4ca30c3b247073c0a31a7ba1b356a5b7beb01b4 (diff) | |
download | ds-bug610276.tar.gz ds-bug610276.tar.xz ds-bug610276.zip |
Bug 610276 - fix coverity Defect Type: API usage errors issuesbug610276
https://bugzilla.redhat.com/show_bug.cgi?id=610276
Resolves: bug 610276
Bug Description: fix coverity Defect Type: API usage errors issues
Reviewed by: nhosoi (Thanks!)
Branch: HEAD
Fix Description: Must call va_end after calling va_start.
Platforms tested: RHEL5 x86_64
Flag Day: no
Doc impact: no
Diffstat (limited to 'lib/libaccess/nseframe.cpp')
-rw-r--r-- | lib/libaccess/nseframe.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libaccess/nseframe.cpp b/lib/libaccess/nseframe.cpp index b29e420f..4a023e1d 100644 --- a/lib/libaccess/nseframe.cpp +++ b/lib/libaccess/nseframe.cpp @@ -230,6 +230,7 @@ NSEFrame_t * nserrGenerate(NSErr_t * errp, long retcode, long errorid, esp = va_arg(ap, char *); efp->ef_errv[i] = STRDUP(esp); } + va_end(ap); /* Add the frame to the list (if any) */ if (errp) { |