Re: [PATCH] Fix unbounded memory usage in `svn propget` command.

2024-06-03 Thread Nathan Hartman
On Thu, May 30, 2024 at 2:05 PM Timofey Zhakov wrote: > > Hello, > > I found that the print_properties() creates an iterpool, but cleans it > inside the 'if' block instead of doing it inside of the loop block. > This patch fixes it and does little refactoring of this part of the code. > > [[[ > Fi

Re: [PATCH] Fix unbounded memory usage in `svn proplist --xml` command.

2024-06-03 Thread Nathan Hartman
On Tue, May 28, 2024 at 5:18 PM Timofey Zhakov wrote: > > Hello, > > When I was working on the previous patch, I found that the > proplist_receiver_xml function creates an iterpool, but never cleans > it. > > The proplist_receiver function already does it. > > [[[ > Fix unbounded memory usage in t

Re: [PATCH] Fix unbounded memory usage in `svn propget` command.

2024-06-03 Thread Nathan Hartman
On Mon, Jun 3, 2024 at 9:42 PM Nathan Hartman wrote: > > On Thu, May 30, 2024 at 2:05 PM Timofey Zhakov wrote: > > > > Hello, > > > > I found that the print_properties() creates an iterpool, but cleans it > > inside the 'if' block instead of doing it inside of the loop block. > > This patch fixes