what about
char *name = strdup("wire-on-face")
and if needed
free(name)
? I usually see as dangerous the fixed-size arrays...
Max
Archived discussion
Hello,
since sprintf does not allocate memory the lines:
char* name;
sprintf(name,"wire-on-face");
will probably lead to a crash. My fix is to declare name as a fixed-size array instead:
char name[128];
sprintf(name,"wire-on-face");
Author
Discussion
Posts are displayed in their archived order.
what about
char *name = strdup("wire-on-face")
and if needed
free(name)
? I usually see as dangerous the fixed-size arrays...
Max
Egal, du kanst deine eigene gepasste OCC-Libs kompilieren
Hello Max,
the variable 'name' is still needed when the function exits and I was too lazy to look for the place where it is not needed any more ;)
Author
by the way, most of the problems reported today were found by cppcheck.
Author
Hi Author,
I confirm. I ran cppcheck-1.52 over the current OCE master branch and it reported some of the issues you reported. I fixed a few of them, created a dev branch on github, and included your fixes (see https://github.com/tpaviot/oce/commits/tp/QA-fixes).
Commenter-3