From 5ca6382fe8adb5bc436a6d873c8b86c69d5abfd1 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Sun, 13 Sep 2020 14:43:46 +0300 Subject: [PATCH] Fix uninitialized variable in readmsg * readmsg/readmsg.c (main): Initialize weedc. --- readmsg/readmsg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readmsg/readmsg.c b/readmsg/readmsg.c index 9f305bb9c..3a9f420db 100644 --- a/readmsg/readmsg.c +++ b/readmsg/readmsg.c @@ -466,7 +466,7 @@ main (int argc, char **argv) mu_mailbox_t mbox = NULL; struct mu_wordsplit ws; char **weedv; - int weedc; + int weedc = 0; int unix_header = 0; /* Native Language Support */ -- 2.28.0 lue='koszko' selected='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/nix/libutil
AgeCommit message (Expand)Author
2023-01-09daemon: Improve error message for wrong hash sizes....* nix/libutil/hash.cc (parseHash): Show the hash algorithm name and expected size in the error message. * tests/derivations.scm ("fixed-output derivation, invalid hash size"): New test. Ludovic Courtès
2022-12-18daemon: Make "opening file" error messages distinguishable....* nix/libstore/build.cc (DerivationGoal::openLogFile): Customize "opening file" error message. * nix/libutil/hash.cc (hashFile): Likewise. * nix/libutil/util.cc (readFile, writeFile): Likewise. Ludovic Courtès
2021-11-19daemon: Micro-optimize 'deletePath'....'remove' calls 'unlink' first and falls back to 'rmdir' upon EISDIR. This change gets rid of the 'unlink' call for every directory being removed. * nix/libutil/util.cc (_deletePath): Call 'unlink' or 'rmdir' depending on 'st.st_mode', rather than call 'remove'. Ludovic Courtès