Update change log and spec for wrt-plugins-tizen_0.4.29
[framework/web/wrt-plugins-tizen.git] / src / Filesystem / Stream.cpp
index 6003438..c0e9af7 100644 (file)
@@ -243,12 +243,6 @@ unsigned long long Stream::getSize() const
     if (!m_stream.seekg(0, std::_S_end)) {
         return 0;
     }
-
-       pos = m_stream.tellg();
-
-       if (pos == -1) {
-               return 0;
-       }
        
     unsigned long long result = m_stream.tellg();
     m_stream.seekg(pos, std::_S_beg);