Compare commits

..

No commits in common. "2d3fd3317bbb0f002ba484bf63814ef899d55ef5" and "e0a77dacf7b49e0d2a00dcc042fb42c4da4f6be3" have entirely different histories.

3 changed files with 2 additions and 5 deletions

4
NEWS
View File

@ -1,4 +0,0 @@
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 Building
-------- --------
Build dependencies: Meson, a C++11 compiler, pkg-config + Build dependencies: Meson, a C++11 compiler, pkg-config +
Runtime dependencies: libcrypto (OpenSSL 1.1 API) Runtime dependencies: libcrypto
$ git clone https://git.janouch.name/p/pdf-simple-sign.git $ git clone https://git.janouch.name/p/pdf-simple-sign.git
$ cd pdf-simple-sign $ cd pdf-simple-sign

View File

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