Browse Source

drivers/base/devtmpfs.c: don't pretend path is const in delete_path

path is the result of kstrdup, and we repeatedly call strrchr on it,
modifying it through the returned pointer. So there's no reason to
pretend path is const.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rasmus Villemoes 7 years ago
parent
commit
be6b1dfe95
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/base/devtmpfs.c

+ 1 - 1
drivers/base/devtmpfs.c

@@ -252,7 +252,7 @@ static int dev_rmdir(const char *name)
 
 static int delete_path(const char *nodepath)
 {
-	const char *path;
+	char *path;
 	int err = 0;
 
 	path = kstrdup(nodepath, GFP_KERNEL);