Page 1 of 1

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

Posted: 2011-09-24 12:15
by twu2
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;
		}

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

Posted: 2011-09-24 13:04
by boco
It strongly looks like a bug, a bad one.

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

Posted: 2011-09-24 19:07
by botg
Thanks for spotting this. A fix has been comitted to the repository.