openbsd-ports/net/amule/patches/patch-src_SharedFileList_cpp
dcoppa dc814c74e9 Fix a couple of crashers:
fix crash on truncated statistics.dat
(upstream git commit 5e3682f7efed13eb52e4358a2d91b0e381334120)

fix amuleweb crash on CProgressImage::CreateSpan
(upstream git commit 846dcf92ce64fd42caf8a86d644fe3a3f4683d09)

And:

fix showing of shared files to other clients
(upstream git commit 4e40aecb160baac72aa28a8a4c7aaf19261e051f)

change nodes.dat default download URL to something actually working
(upstream git commit 8dbe597539bcac7272ccf4d46790fde814aeded1)
2012-02-22 07:54:26 +00:00

20 lines
552 B
Plaintext

$OpenBSD: patch-src_SharedFileList_cpp,v 1.1 2012/02/22 07:54:26 dcoppa Exp $
Fix showing of shared files to other clients
(upstream git commit 4e40aecb160baac72aa28a8a4c7aaf19261e051f)
--- src/SharedFileList.cpp.orig Sun Sep 18 21:29:33 2011
+++ src/SharedFileList.cpp Tue Feb 21 15:56:05 2012
@@ -626,10 +626,8 @@ void CSharedFileList::GetSharedFilesByDirectory(const
CKnownFile *cur_file = pos->second;
if (dir.IsSameDir(cur_file->GetFilePath())) {
- continue;
+ list.push_back(cur_file);
}
-
- list.push_back(cur_file);
}
}