Custom Query (8142 matches)
Results (310 - 312 of 8142)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#12280 | rejected | libfilezilla 0.24.1 Solaris fixes | ||
Description |
I'm not using Solaris myself, but a Solaris user of pkgsrc reported two problems with compiling libfilezilla: struct sigaction needs "struct" in front, and wcsnrtombs needs to be prefixed with "std::". The attached patches fix the issues. Thanks. |
|||
#12276 | fixed | 'data/filezilla.appdata.xml': launchable 'type' should be 'desktop-id' not 'desktop'. | ||
Description |
After previous update to the 'data/filezilla.appdata.xml' where we left launchable in for software centers. A look at the appstream 0.12 docs show that the 'type' should be 'desktop-id' and not the current 'desktop'. Patch attached. |
|||
#12274 | rejected | Buffer overflow when wrongly using `memcpy` | ||
Description |
In the latest source code /tests/dirparsertest.cpp, there is a buffer overflow in function DirectoryListingParserTest::testIndividual().
1474 size_t const len = entry.data.size(); 1475 char* data = new char[len]; 1476 memcpy(data, entry.data.c_str(), len); |