Compare commits

..

3 Commits

Author SHA1 Message Date
2d3fd3317b
Add NEWS 2018-08-03 20:04:33 +02:00
803b048f8c
Clarify libcrypto API version in README 2018-08-03 19:58:36 +02:00
73bf4b861a
Fix double fclose() 2018-07-21 23:38:25 +02:00
3 changed files with 5 additions and 2 deletions

4
NEWS Normal file
View File

@ -0,0 +1,4 @@
1.0 (2018-08-03)
* Initial release

View File

@ -22,7 +22,7 @@ self-contained and it should be easy to grasp and change to suit to your needs.
Building
--------
Build dependencies: Meson, a C++11 compiler, pkg-config +
Runtime dependencies: libcrypto
Runtime dependencies: libcrypto (OpenSSL 1.1 API)
$ git clone https://git.janouch.name/p/pdf-simple-sign.git
$ cd pdf-simple-sign

View File

@ -967,7 +967,6 @@ int main(int argc, char* argv[]) {
(void) unlink(output_path);
die(3, "%s: %s", output_path, strerror(errno));
}
fclose(fp);
} else {
die(3, "%s: %s", output_path, strerror(errno));
}