Age | Commit message (Collapse) | Author | Files | Lines |
|
The script assumes that the first line of the semantic patch is a
comment which indicates the first line of the commit message.
|
|
cairo CODING_STYLE guidelines require checking the argument of malloc
for overflow and provide some utilities for common usage patterns such
as (a*b), (a*b*c) and (a*b+c).
Automatically replace malloc invocation of these expressions with the
overflow-safe version.
|
|
NULL can be safely free()'d, but often code checks if a pointer is
non-NULL before free()'ing it. These checks can be automatically
detected and removed.
|
|
Add a script which cleans up trailing whitespace and normalizes tabs
and spaces in code lines.
|
|
|