-
由 Colin Ian King 提交于
str is being assigned to an empty string but str is never being read after that, so the assignment is redundant and can be removed. Moving the declaration of str to a more localised block, cleans up clang warning: "Value stored to 'str' is never read" Signed-off-by: NColin Ian King <colin.king@canonical.com> Signed-off-by: NPaul Moore <paul@paul-moore.com>
add24372