*** empty log message ***

This commit is contained in:
Arvid Norberg
2004-10-16 01:10:42 +00:00
parent a8e8c715e8
commit c48f64c2ec
4 changed files with 19 additions and 7 deletions

View File

@@ -49,7 +49,7 @@ namespace
}
~auto_LocalFree()
{
if(m_memory)
if (m_memory)
LocalFree(m_memory);
}
private:
@@ -58,7 +58,7 @@ namespace
void throw_exception(const char* thrower)
{
char *buffer=0;
char *buffer = 0;
int err = GetLastError();
#ifdef _UNICODE
@@ -211,7 +211,7 @@ namespace libtorrent
, &offs
, from_where))
{
throw_exception("file::seek");
throw_exception("file::seek");
}
}
@@ -280,6 +280,7 @@ namespace libtorrent
void file::open(boost::filesystem::path const& p, open_mode m)
{
assert(p.is_complete());
m_impl->open(p.native_file_string().c_str(), impl::open_flags(m.m_mask));
}