Browse Source

Update stb_c_lexer.h

[stb_c_lexer.h:801]: (error) Memory leak: text
[stb_c_lexer.h:801]: (error) Resource leak: f

Found by https://github.com/bryongloden/cppcheck
Bryon Gloden, CISSP® 9 years ago
parent
commit
8eebc09150
1 changed files with 2 additions and 0 deletions
  1. 2 0
      stb_c_lexer.h

+ 2 - 0
stb_c_lexer.h

@@ -798,6 +798,8 @@ int main(int argc, char **argv)
    stb_lexer lex;
    if (len < 0) {
       fprintf(stderr, "Error opening file\n");
+      free(text);
+      fclose(f);
       return 1;
    }
    fclose(f);