Skip to content

Commit

Permalink
bin/fuzz.pl find trailing whitespace 2
Browse files Browse the repository at this point in the history
  • Loading branch information
smithAchang committed Sep 4, 2023
1 parent 6166f88 commit 32d3d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ACE/ace/Malloc_T.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ ACE_Cascaded_Dynamic_Cached_Allocator<ACE_LOCK>::malloc (size_t nbytes)
if(ptr == nullptr)
{
comb_alloc_ptr tmp;
ACE_NEW_RETURN (tmp, comb_alloc_type(this->initial_n_chunks_ * 2 * hierarchy_.size(), this->chunk_size_), nullptr);
ACE_NEW_RETURN (tmp, comb_alloc_type(this->initial_n_chunks_ * 2 * hierarchy_.size(), this->chunk_size_), nullptr);
hierarchy_.push_back(tmp);
ptr = tmp->malloc(nbytes);
}
Expand Down

0 comments on commit 32d3d1f

Please sign in to comment.