Explorar el Código

sys: fix unititialised class member in File.

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

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

@@ -44,7 +44,10 @@ class FileData
{
friend class File;

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

void Open(StreamType stream)
{


Cargando…
Cancelar
Guardar