micheleselea

Results 32 issues of micheleselea

I think there's some problem with Directory iterator, if you iterate over folder che funtion ->isDirectory() is true but path().isDirectory() is false: ``` Poco::DirectoryIterator it(s); Poco::DirectoryIterator end; while (it !=...

stale

It's not possible to use this ``` std::wstring wstr; Poco::replaceInPlace(wstr, L"STRINGB", L"STRINGA"); ``` due to a compile error in this line ` typename S::size_type fromLen = std::strlen(from);` of String.h ```...

bug
fixed

In TCPServer test suite there is this line of code `pParams->setThreadIdleTime(100);` That can lead to some softawre error, because you can think that 100 are milliseconds, but because the function...

If you try to compile Foundation with c++23 you will get an error here ``` std::string format(const std::string& fmt, const Any& value) { std::string result; format(result, fmt, value); return result;...

bug

in function `CipherKeyImpl::generateKey` we use `EVP_BytesToKey` for key and iv derivation I read about Openssl documentation that should be preferred `PKCS5_PBKDF2_HMAC` I have 3 questions: 1. Do you have some...

Hi all, because I found the changes you did in thread_UNIX for getting the exception error code, this means that the join function can throw If you do a `ThreadPool::joinAll`...

Different behavior between linux ``` throw SystemException(Poco::format("cannot set thread priority (%s)", Error::getMessage(errorCode))); ``` and windows `throw SystemException("cannot join thread");`

feature

The function SecureSocketImpl::shutdown() was changed in 1.14.0 before the function was coded like that: ``` void SecureSocketImpl::shutdown() { if (_pSSL) { // Don't shut down the socket more than once....

bug

When we create a CLIENT_USE Poco::Net::Context giving a subclass of InvalidCertificateHandler with setInvalidCertificateHandler if you end up in the onInvalidCertificate callback and you set errorCert.setIgnoreError(false); it will result in a...

bug
stale

Hi all, ok this can sound quite insane, just reading the title, but I lost 2 days looking for an unbelievable crash, so I want to you to save some...

bug