Bug or Feature? FileZilla won't load lowest files from queue

Need help with FileZilla Client? Something does not work as expected? In this forum you may find an answer.

Moderator: Project members

Post Reply
Message
Author
twu2
425 Can't open data connection
Posts: 45
Joined: 2005-02-26 16:54

Bug or Feature? FileZilla won't load lowest files from queue

#1 Post by twu2 » 2011-09-24 12:15

Hi!

FileZilla will ignore the lowest priority files while load them from queue. Is this a bug or a feature?

In wxLongLong_t CQueueStorage::Impl::ParseFileFromRow(CFileItem** pItem), it will return INVALID_DATA while priority is 0 (lowest).

Code: Select all

		if (sourceFile.empty() || localPath.empty() ||
			remotePath.IsEmpty() ||
			size < -1 ||
			priority <= 0 || priority >= PRIORITY_COUNT ||
			errorCount < 0)
		{
			return INVALID_DATA;
		}

User avatar
boco
Contributor
Posts: 26914
Joined: 2006-05-01 03:28
Location: Germany

Re: Bug or Feature? FileZilla won't load lowest files from q

#2 Post by boco » 2011-09-24 13:04

It strongly looks like a bug, a bad one.
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

User avatar
botg
Site Admin
Posts: 35509
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: Bug or Feature? FileZilla won't load lowest files from q

#3 Post by botg » 2011-09-24 19:07

Thanks for spotting this. A fix has been comitted to the repository.

Post Reply