Viewing File: /home/ubuntu/code_review/arcanist/src/lint/linter/__tests__/cppcheck/zblair.lint-test

/**
 * Taken from http://www.slideshare.net/zblair/cppcheck-10316379
 */
void foo(char* str) {
    char* buf = new char[8];
    strcpy(buf, str);

    FILE* file = fopen("out.txt", "w");
    if (!file)
        return;

    for (char* c = buf; *c; ++c)
        fputc((int)*c, file);

    delete buf;
}
~~~~~~~~~~
error:10:
error:16:
Back to Directory File Manager