* main - vdo: reset errno before strtoull
@ 2022-08-19 12:58 Zdenek Kabelac
0 siblings, 0 replies; only message in thread
From: Zdenek Kabelac @ 2022-08-19 12:58 UTC (permalink / raw)
To: lvm-devel
Gitweb: https://sourceware.org/git/?p=lvm2.git;a=commitdiff;h=309df239e3ee474f3a5337f8fa3c0a1f7b0a89e5
Commit: 309df239e3ee474f3a5337f8fa3c0a1f7b0a89e5
Parent: ac2c78544fa60490f9506f4ea0cd7d74d2395b28
Author: Zdenek Kabelac <zkabelac@redhat.com>
AuthorDate: Thu Aug 18 13:55:29 2022 +0200
Committer: Zdenek Kabelac <zkabelac@redhat.com>
CommitterDate: Fri Aug 19 14:55:47 2022 +0200
vdo: reset errno before strtoull
Missed errno reset in commit ebad057579aeff0980a1b8af7eaacd56e62ed0c9.
---
lib/metadata/vdo_manip.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/metadata/vdo_manip.c b/lib/metadata/vdo_manip.c
index 637fd1e5d..0db401537 100644
--- a/lib/metadata/vdo_manip.c
+++ b/lib/metadata/vdo_manip.c
@@ -618,6 +618,7 @@ static int _get_memory_info(uint64_t *total_mb, uint64_t *available_mb)
if (!found)
continue; // not interesting
+ errno = 0;
*(found->value) = (uint64_t) strtoull(e, &tail, 10);
if ((e == tail) || errno)
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2022-08-19 12:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-19 12:58 main - vdo: reset errno before strtoull Zdenek Kabelac
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.