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:
void helpme();
const char* sofname = "sp";
-const char* version = "1.1.1";
+const char* version = "1.1.2";
void helpme() {
printf("076 sp - シンプルなパスワードマネージャー\n");
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ライブラリを設置
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("ファイルを開くに失敗。");
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;
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("ファイルを開くに失敗。");