We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da28332 commit 05e6f56Copy full SHA for 05e6f56
1 file changed
src/libnml/inifile/inifile.cc
@@ -68,7 +68,8 @@ IniFile::Open(const char *file)
68
69
if(IsOpen()) Close();
70
71
- TildeExpansion(file, path, sizeof(path));
+ if (TildeExpansion(file, path, sizeof(path)))
72
+ return false;
73
74
if((fp = fopen(path, "r")) == NULL)
75
return(false);
0 commit comments