Browse Source

ext4 crypto: fix ext4_get_crypto_ctx()'s calling convention in ext4_decrypt_one

Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Theodore Ts'o 10 years ago
parent
commit
ad0a0ce894
1 changed files with 2 additions and 2 deletions
  1. 2 2
      fs/ext4/crypto.c

+ 2 - 2
fs/ext4/crypto.c

@@ -396,8 +396,8 @@ int ext4_decrypt_one(struct inode *inode, struct page *page)
 
 	struct ext4_crypto_ctx *ctx = ext4_get_crypto_ctx(inode);
 
-	if (!ctx)
-		return -ENOMEM;
+	if (IS_ERR(ctx))
+		return PTR_ERR(ctx);
 	ret = ext4_decrypt(ctx, page);
 	ext4_release_crypto_ctx(ctx);
 	return ret;