Explorar el Código

sys: fix uninitialised memory in File class.

legacy
Sam Hocevar hace 4 años
padre
commit
dd1d8fe4de
Se han modificado 1 ficheros con 4 adiciones y 9 borrados
  1. +4
    -9
      src/sys/file.cpp

+ 4
- 9
src/sys/file.cpp Ver fichero

@@ -46,11 +46,6 @@ class FileData
{
friend class File;

FileData()
: m_refcount(0),
m_type(StreamType::File)
{ }

void Open(StreamType stream)
{
if (m_type == StreamType::File ||
@@ -211,12 +206,12 @@ class FileData

//-----------------------
#if __ANDROID__
AAsset *m_asset;
AAsset *m_asset = nullptr;
#elif HAVE_STDIO_H
FILE *m_fd;
FILE *m_fd = nullptr;
#endif
std::atomic<int> m_refcount;
StreamType m_type;
std::atomic<int> m_refcount = 0;
StreamType m_type = StreamType::File;
struct stat m_stat;
};



Cargando…
Cancelar
Guardar