]> Nishi Git Mirror - sp.git/commitdiff
OpenBSDでのコンパイラーが発生された問題を修正した sp-1.1.2
author諏訪子 <suwako@076.moe>
Fri, 1 Dec 2023 04:26:30 +0000 (13:26 +0900)
committer諏訪子 <suwako@076.moe>
Fri, 1 Dec 2023 04:26:30 +0000 (13:26 +0900)
CHANGELOG.md
Makefile
main.c
showpass.c
yankpass.c

index bd31986c5b44b24f723669e9f5b4eba6625975f4..95ca75ad238d422f5f500cd2fe08198dc86df722 100644 (file)
@@ -1,3 +1,6 @@
+# 1.1.2
+* OpenBSDでのコンパイラーが発生された問題を修正した
+
 # 1.1.1
 * make install-zsh部分を修正
 
index 3d22c6c725b704adef2bc8ce824aa7ec95f1db50..6dd257c1d0bccb262cfa7d5bafa433181034b397 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
 NAME=sp
-VERSION=1.1.1
+VERSION=1.1.2
 # Linux、Haiku、かIllumos = /usr、FreeBSDかOpenBSD = /usr/local、NetBSD = /usr/pkg
 PREFIX=/usr
 CC=cc
 FILES=main.c showpass.c yankpass.c addpass.c delpass.c listpass.c genpass.c initpass.c otppass.c
-CFLAGS=-Wall -Wextra -g
+CFLAGS=-Wall -Wextra -g -I${PREFIX}/include -L${PREFIX}/lib
 LDFLAGS=-lgpgme -lcrypto
 
 all:
diff --git a/main.c b/main.c
index 89d5e7ee33516850ea5eb0cfd0936ce14b491539..5502a0dee64ede292317c0d7e9271ef7819b1f16 100644 (file)
--- a/main.c
+++ b/main.c
@@ -16,7 +16,7 @@
 void helpme();
 
 const char* sofname = "sp";
-const char* version = "1.1.1";
+const char* version = "1.1.2";
 
 void helpme() {
   printf("076 sp - シンプルなパスワードマネージャー\n");
index 76e00077b9fdbab488cbb970b45dbae258296df4..9355521c816a2afa8e6e21483a5a5d53282eb42f 100644 (file)
@@ -18,7 +18,7 @@ void clean_up(gpgme_ctx_t ctx, gpgme_data_t in, gpgme_data_t out, FILE* gpgfile,
 void showpass(char* file) {
   gpgme_ctx_t ctx;
   gpgme_error_t err;
-  gpgme_data_t in, out;
+  gpgme_data_t in = NULL, out = NULL;
   FILE *gpgfile;
 
   // GPGMEライブラリを設置
@@ -52,7 +52,7 @@ void showpass(char* file) {
     return;
   }
 
-  sprintf(gpgpath, "%s%s%s%s", homedir, basedir, file, ext);
+  snprintf(gpgpath, alllen, "%s%s%s%s", homedir, basedir, file, ext);
   gpgfile = fopen(gpgpath, "rb");
   if (gpgfile == NULL) {
     perror("ファイルを開くに失敗。");
@@ -61,7 +61,15 @@ void showpass(char* file) {
     return;
   }
 
-  if (gpgme_data_new_from_stream(&in, gpgfile) != GPG_ERR_NO_ERROR || gpgme_data_new(&out) != GPG_ERR_NO_ERROR) {
+  // ファイルからinデータオブジェクトを創作
+  if (gpgme_data_new_from_stream(&in, gpgfile) != GPG_ERR_NO_ERROR) {
+    fprintf(stderr, "GPGMEデータオブジェクトを創作に失敗。\n");
+    clean_up(ctx, in, out, gpgfile, gpgpath);
+    return;
+  }
+
+  // outデータオブジェクトを創作
+  if (gpgme_data_new(&out) != GPG_ERR_NO_ERROR) {
     fprintf(stderr, "GPGMEデータオブジェクトを創作に失敗。\n");
     clean_up(ctx, in, out, gpgfile, gpgpath);
     return;
index b8df4de0a7e0c469ee88e366b0686b1076b91259..cf0af8cbb65c67c303b052187afd0abd5ac12b17 100644 (file)
@@ -52,7 +52,7 @@ void yankpass(char* file) {
     return;
   }
 
-  sprintf(gpgpath, "%s%s%s%s", homedir, basedir, file, ext);
+  snprintf(gpgpath, alllen, "%s%s%s%s", homedir, basedir, file, ext);
   gpgfile = fopen(gpgpath, "rb");
   if (gpgfile == NULL) {
     perror("ファイルを開くに失敗。");