Browse Source

of: Format string bug in drivers/of/of_i2c.c

Format string bug.  Not exploitable, as this is only writable by root,
but worth fixing all the same.

See 326f6a5c9c9e1a62aec37bdc0c3f8d53adabe77b

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Jon Smirl 16 years ago
parent
commit
0721357d4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/of/of_i2c.c

+ 1 - 1
drivers/of/of_i2c.c

@@ -41,7 +41,7 @@ void of_register_i2c_devices(struct i2c_adapter *adap,
 
 
 		info.addr = *addr;
 		info.addr = *addr;
 
 
-		request_module(info.type);
+		request_module("%s", info.type);
 
 
 		result = i2c_new_device(adap, &info);
 		result = i2c_new_device(adap, &info);
 		if (result == NULL) {
 		if (result == NULL) {