aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/lzw.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2013-02-28 21:47:48 +0100
committerJay Berkenbilt <ejb@ql.org>2013-03-05 19:33:32 +0100
commit6b9297882e0106b5c0af53320673d6341b9bea91 (patch)
tree486ef480b4d16a3df7c37569a6dcd62ed29b9dbe /libtests/lzw.cc
parent8be827761347b7a0a4ce6e7bdfa6fd4585606b21 (diff)
downloadqpdf-6b9297882e0106b5c0af53320673d6341b9bea91.tar.zst
Mark secure CRT warnings with comment
Put a specific comment marker next to every piece of code that MSVC gives warning 4996 for. This warning is generated for calls to functions that Microsoft considers insecure or deprecated. This change is in preparation for fixing all these cases even though none of them are actually incorrect or insecure as used in qpdf. The comment marker makes them easier to find so they can be fixed in subsequent commits.
Diffstat (limited to 'libtests/lzw.cc')
-rw-r--r--libtests/lzw.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtests/lzw.cc b/libtests/lzw.cc
index 6fd8ca91..1007ae24 100644
--- a/libtests/lzw.cc
+++ b/libtests/lzw.cc
@@ -27,9 +27,9 @@ int main(int argc, char* argv[])
char* outfilename = argv[2];
FILE* infile = QUtil::fopen_wrapper("open input file",
- fopen(infilename, "rb"));
+ fopen(infilename, "rb")); // XXXX
FILE* outfile = QUtil::fopen_wrapper("open output file",
- fopen(outfilename, "wb"));
+ fopen(outfilename, "wb")); // XXXX
Pl_StdioFile out("output", outfile);
Pl_LZWDecoder decode("decode", &out, early_code_change);