Tagged Questions
The coccinelle tag has no wiki summary.
3
votes
2answers
128 views
Detect passing pointer to uninitialized variable
Some functions have a pointer argument that points to where a result from
calling the function should be stored, but the function also require that
when calling the function this pointer points to ...
2
votes
1answer
565 views
Adding missing NULL checks after malloc with coccinelle
I want to write a semantic patch for coccinelle, so that it will add if (ptr == NULL) ... checks after calls to malloc where they are missing.
Let's say I have the following input source code:
...
1
vote
6answers
327 views
Find where a function (or macro) is called with a given argument
I need to know if it's possible to use a tool like ctags or cscope to find all the usages of a function but filter the results depending on the value of one of its parameters.
For example, let's ...
1
vote
4answers
95 views
Regex for refactoring to arrays
I have a very big C programming project that uses thousands of struct variables with this naming convention:
specificstruct->x = specificstruct->y + specificstruct->z
I want to do some heavy ...
0
votes
1answer
47 views
What is the correct type to use for declaring a metavariable that possibly could match either variables or members in a struct?
What is the correct type to use for declaring a metavariable that possibly could match either variables or members in a struct?
Take for instance the following example source code:
#include ...