Skip to content
Commit 9d108d25 authored by Al Viro's avatar Al Viro
Browse files

devtmpfs: missing initialialization in never-hit case



create_path() on something without a single / in it will return err
without initializing it.  It actually can't happen (we call that thing
only if create on the same path returns -ENOENT, which won't happen
happen for single-component path), but in this case initializing err
to 0 is more than making compiler to STFU - would be the right thing
to return on such paths; the function creates a parent directory of
given pathname and in that case it has no work to do...

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent d6b722aa
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment