diff options
author | Eric Sandeen <[email protected]> | 2016-03-15 11:42:47 +1100 |
---|---|---|
committer | Dave Chinner <[email protected]> | 2016-03-15 11:42:47 +1100 |
commit | cc07eed8336d6452214d13e0cba770a0f5296a7f (patch) | |
tree | c480a343183a036e4c46b02b8e4714f5aea0d9b5 /tools/perf/scripts/python/export-to-postgresql.py | |
parent | d34999c97ae87cd56514b8cbc6269651efe274fe (diff) |
xfs: ensure committed is initialized in xfs_trans_roll
__xfs_trans_roll() can return without setting the
*committed argument; this was a problem for xfs_bmap_finish():
int committed;/* xact committed or not */
...
error = __xfs_trans_roll(tp, ip, &committed);
if (error) {
...
if (committed) {
and we tested an uninitialized "committed" variable on the
error path. No caller is preserving "committed" state across
calls to __xfs_trans_roll(), so just initialize committed inside
the function to avoid future errors like this.
Reported-by: Dan Carpenter <[email protected]>
Signed-off-by: Eric Sandeen <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Dave Chinner <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/export-to-postgresql.py')
0 files changed, 0 insertions, 0 deletions