30 lines
893 B
Diff
30 lines
893 B
Diff
From ca3eac467b1d225bb54b8a156f3b3ea2dc107895 Mon Sep 17 00:00:00 2001
|
|
From: Nicolas Williams <nico@twosigma.com>
|
|
Date: Wed, 16 Nov 2016 11:39:27 -0600
|
|
Subject: [PATCH 3/4] CVE-2022-42898 source4/heimdal: Round #2 of scan-build
|
|
warnings cleanup
|
|
|
|
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15203
|
|
|
|
[jsutton@samba.org Kept only the modification to lib/krb5/store.c to
|
|
avoid a build error]
|
|
---
|
|
source4/heimdal/lib/krb5/store.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/source4/heimdal/lib/krb5/store.c b/source4/heimdal/lib/krb5/store.c
|
|
index df0227b39de..39e51ec3dc8 100644
|
|
--- a/source4/heimdal/lib/krb5/store.c
|
|
+++ b/source4/heimdal/lib/krb5/store.c
|
|
@@ -431,6 +431,7 @@ krb5_ret_int(krb5_storage *sp,
|
|
int ret;
|
|
unsigned char v[8];
|
|
uint64_t w;
|
|
+ *value = 0; /* quiets warnings */
|
|
ret = sp->fetch(sp, v, len);
|
|
if (ret < 0)
|
|
return errno;
|
|
--
|
|
2.35.0
|
|
|