aboutsummaryrefslogtreecommitdiff
path: root/CPP/Common/DynLimBuf.cpp
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-06-21 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 14:59:19 +0500
commit5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch)
treefe5e17420300b715021a76328444088d32047963 /CPP/Common/DynLimBuf.cpp
parent93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff)
download7zip-23.01.tar.gz
7zip-23.01.tar.bz2
7zip-23.01.zip
23.0123.01
Diffstat (limited to '')
-rw-r--r--CPP/Common/DynLimBuf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/CPP/Common/DynLimBuf.cpp b/CPP/Common/DynLimBuf.cpp
index 7914104..1d92af3 100644
--- a/CPP/Common/DynLimBuf.cpp
+++ b/CPP/Common/DynLimBuf.cpp
@@ -7,7 +7,7 @@
7 7
8CDynLimBuf::CDynLimBuf(size_t limit) throw() 8CDynLimBuf::CDynLimBuf(size_t limit) throw()
9{ 9{
10 _chars = 0; 10 _chars = NULL;
11 _pos = 0; 11 _pos = 0;
12 _size = 0; 12 _size = 0;
13 _sizeLimit = limit; 13 _sizeLimit = limit;