This commit is contained in:
Vincent Richard 2014-02-05 20:52:08 +01:00
commit 647c931664
3 changed files with 3 additions and 3 deletions

View File

@ -310,7 +310,7 @@ bool windowsFile::exists() const
shared_ptr <vmime::utility::file> windowsFile::getParent() const shared_ptr <vmime::utility::file> windowsFile::getParent() const
{ {
if (m_path.isEmpty()) if (m_path.isEmpty())
return NULL; return null;
else else
return make_shared <windowsFile>(m_path.getParent()); return make_shared <windowsFile>(m_path.getParent());
} }

View File

@ -293,7 +293,7 @@ shared_ptr <vmime::utility::fileSystemFactory> windowsHandler::getFileSystemFact
shared_ptr <vmime::utility::childProcessFactory> windowsHandler::getChildProcessFactory() shared_ptr <vmime::utility::childProcessFactory> windowsHandler::getChildProcessFactory()
{ {
// TODO: Not implemented // TODO: Not implemented
return (NULL); return null;
} }
#endif #endif

View File

@ -498,7 +498,7 @@ shared_ptr <net::timeoutHandler> windowsSocket::getTimeoutHandler()
shared_ptr <vmime::net::socket> windowsSocketFactory::create() shared_ptr <vmime::net::socket> windowsSocketFactory::create()
{ {
shared_ptr <vmime::net::timeoutHandler> th = NULL; shared_ptr <vmime::net::timeoutHandler> th;
return make_shared <windowsSocket>(th); return make_shared <windowsSocket>(th);
} }