Patch "xfs: fix return of uninitialized value in variable error" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    xfs: fix return of uninitialized value in variable error

to the 5.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     xfs-fix-return-of-uninitialized-value-in-variable-er.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit ce52a308b9f2eb79827c4d5177cbb71f5a969c08
Author: Colin Ian King <colin.king@xxxxxxxxxxxxx>
Date:   Fri Apr 9 10:27:34 2021 -0700

    xfs: fix return of uninitialized value in variable error
    
    [ Upstream commit 3b6dd9a9aeeada19d0c820ff68e979243a888bb6 ]
    
    A previous commit removed a call to xfs_attr3_leaf_read that
    assigned an error return code to variable error. We now have
    a few early error return paths to label 'out' that return
    error if error is set; however error now is uninitialized
    so potentially garbage is being returned.  Fix this by setting
    error to zero to restore the original behaviour where error
    was zero at the label 'restart'.
    
    Addresses-Coverity: ("Uninitialized scalar variable")
    Fixes: 07120f1abdff ("xfs: Add xfs_has_attr and subroutines")
    Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx>
    Reviewed-by: Brian Foster <bfoster@xxxxxxxxxx>
    Reviewed-by: Darrick J. Wong <djwong@xxxxxxxxxx>
    Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/fs/xfs/libxfs/xfs_attr.c b/fs/xfs/libxfs/xfs_attr.c
index fd8e6418a0d3..96ac7e562b87 100644
--- a/fs/xfs/libxfs/xfs_attr.c
+++ b/fs/xfs/libxfs/xfs_attr.c
@@ -928,6 +928,7 @@ restart:
 	 * Search to see if name already exists, and get back a pointer
 	 * to where it should go.
 	 */
+	error = 0;
 	retval = xfs_attr_node_hasname(args, &state);
 	if (retval != -ENOATTR && retval != -EEXIST)
 		goto out;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux