aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2013-02-28 23:10:30 +0100
committerJay Berkenbilt <ejb@ql.org>2013-03-05 19:35:46 +0100
commitfd649593983925356fcc61c04a75c9f55cee3648 (patch)
tree7a79631772422d1808872e50e21eb4178e2eddeb /ChangeLog
parentac4deac1873ca1bb570ffd479ed2cc1010762f89 (diff)
downloadqpdf-fd649593983925356fcc61c04a75c9f55cee3648.tar.zst
Favor strerror_s and fopen_s on MSVC
Make remaining calls to fopen and strerror use strerror_s and fopen_s on MSVC.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d8f4da71..90b110e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2013-02-28 Jay Berkenbilt <ejb@ql.org>
+ * Favor fopen_s and strerror_s on MSVC to avoid CRT security
+ warnings. This is useful for people who may want to use qpdf in
+ an application that is Windows 8 certified.
+
* New method QUtil::safe_fopen to wrap calls to fopen. This is
less cumbersome than calling QUtil::fopen_wrapper.