mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-25 15:21:54 +00:00
Fix more "secure" warnings.
This commit is contained in:
parent
f211e313e2
commit
62a00e333a
5
format.h
5
format.h
@ -142,7 +142,7 @@ void Array<T, SIZE>::append(const T *begin, const T *end) {
|
||||
std::ptrdiff_t num_elements = end - begin;
|
||||
if (size_ + num_elements > capacity_)
|
||||
Grow(num_elements);
|
||||
std::copy(begin, end, ptr_ + size_);
|
||||
std::copy(begin, end, CheckIterator(ptr_ + size_, capacity_ - size_));
|
||||
size_ += num_elements;
|
||||
}
|
||||
|
||||
@ -1533,7 +1533,8 @@ void BasicFormatter<Char>::DoFormat() {
|
||||
if (spec.width_ > 1) {
|
||||
out = this->GrowBuffer(spec.width_);
|
||||
if (spec.align_ == ALIGN_RIGHT) {
|
||||
std::fill_n(out, spec.width_ - 1, spec.fill_);
|
||||
std::fill_n(internal::CheckIterator(out, spec.width_),
|
||||
spec.width_ - 1, spec.fill_);
|
||||
out += spec.width_ - 1;
|
||||
} else if (spec.align_ == ALIGN_CENTER) {
|
||||
out = this->FillPadding(out, spec.width_, 1, spec.fill_);
|
||||
|
Loading…
Reference in New Issue
Block a user