fixed a but that it never delete fis in ParseCSVFile
This commit is contained in:
parent
9c7aecfdb0
commit
4d62d19187
@ -55,13 +55,10 @@ namespace hgl
|
|||||||
|
|
||||||
template<typename T> inline bool ParseCSVFile(const OSString &filename,CSVParseCallback<T> *pcb)
|
template<typename T> inline bool ParseCSVFile(const OSString &filename,CSVParseCallback<T> *pcb)
|
||||||
{
|
{
|
||||||
io::FileInputStream *fis=new io::FileInputStream;
|
io::OpenFileInputStream fis(filename);
|
||||||
|
|
||||||
if(!fis->Open(filename))
|
if(!fis)
|
||||||
{
|
|
||||||
delete fis;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
|
|
||||||
return ParseCSV<T>(fis,pcb);
|
return ParseCSV<T>(fis,pcb);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user