From b0a6c005b9db25ab91bd686a260e6651f512e0c3 Mon Sep 17 00:00:00 2001 From: Jan Willamowius <jan@willamowius.de> Date: 周日, 21 4月 2019 23:58:07 +0800 Subject: [PATCH] fix memory leaks on error --- src/tools/bootstrap/bootstrap.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/tools/bootstrap/bootstrap.cpp b/src/tools/bootstrap/bootstrap.cpp index 61c764c..4af84e9 100644 --- a/src/tools/bootstrap/bootstrap.cpp +++ b/src/tools/bootstrap/bootstrap.cpp @@ -95,7 +95,7 @@ string public_fname(argv[2]); if (file_exists(private_fname) || file_exists(public_fname)) { - printf("Key file exist, skipping key generation. Do 'make clean' to generate new keys.\n"); + printf("Key files exist, skipping key generation. Do 'make clean' to generate new keys.\n"); exit(0); } -- Gitblit v1.9.1