Opened 20 years ago
Last modified 20 years ago
#1454 closed Patch
filezilla server memory/speed optimization
Reported by: | tropics | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | Other |
Keywords: | Cc: | tropics, Tim Kosse | |
Component version: | Operating system type: | ||
Operating system version: |
Description
the filezilla server makes two copies of a list in
GetNotifications(), which are thrown away shortly
afterwards.
the proposed patch swaps the list with an empty one
instead of copying&clearing it. a pass-by-reference
argument is used instead of using the return value to get
around the second copy.
Attachments (1)
Note:
See TracTickets
for help on using tickets.
patch v1