diff options
| author | Roel Kluin <roel.kluin@gmail.com> | 2009-07-17 09:24:00 -0400 |
|---|---|---|
| committer | Ben Dooks <ben-linux@fluff.org> | 2009-07-29 19:55:50 -0400 |
| commit | 783fd6fa4c144e3f6913e6fed89de10a6dd715a5 (patch) | |
| tree | 2702ace497e3361b0cbcf228896d9c73e21a2d08 | |
| parent | 0e014e92ba93d905bcb39881dce2d38807b90c34 (diff) | |
i2c: strncpy does not null terminate string
strlcpy() will always null terminate the string.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
| -rw-r--r-- | drivers/i2c/busses/i2c-omap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c index fdd83277c8a8..f2b82ee39adf 100644 --- a/drivers/i2c/busses/i2c-omap.c +++ b/drivers/i2c/busses/i2c-omap.c | |||
| @@ -879,7 +879,7 @@ omap_i2c_probe(struct platform_device *pdev) | |||
| 879 | i2c_set_adapdata(adap, dev); | 879 | i2c_set_adapdata(adap, dev); |
| 880 | adap->owner = THIS_MODULE; | 880 | adap->owner = THIS_MODULE; |
| 881 | adap->class = I2C_CLASS_HWMON; | 881 | adap->class = I2C_CLASS_HWMON; |
| 882 | strncpy(adap->name, "OMAP I2C adapter", sizeof(adap->name)); | 882 | strlcpy(adap->name, "OMAP I2C adapter", sizeof(adap->name)); |
| 883 | adap->algo = &omap_i2c_algo; | 883 | adap->algo = &omap_i2c_algo; |
| 884 | adap->dev.parent = &pdev->dev; | 884 | adap->dev.parent = &pdev->dev; |
| 885 | 885 | ||
