summaryrefslogtreecommitdiff
path: root/udev-remove.c
diff options
context:
space:
mode:
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>2004-02-28 01:59:02 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:34:28 -0700
commitc58e36c092ad5acc84d35e455ecc74096b25ae66 (patch)
tree6030871e62499303759ecf4660fc26d9b3683004 /udev-remove.c
parent7eb136adb8fe265050b2a3e44b216e747163743f (diff)
[PATCH] udev - safer sprintf() use
Here is for now my last patch to the string handling for a rather theorethical case, where the node is very very very long. :) We have accordant to strfieldcat(to, from) now a strintcat(to, i) macro, which appends the ascii representation of a integer to a string in a safe way.
Diffstat (limited to 'udev-remove.c')
-rw-r--r--udev-remove.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/udev-remove.c b/udev-remove.c
index 8794429635..e62d1fb122 100644
--- a/udev-remove.c
+++ b/udev-remove.c
@@ -87,7 +87,8 @@ static int delete_node(struct udevice *dev)
if (dev->partitions > 0) {
info("removing partitions '%s[1-%i]'", filename, dev->partitions);
for (i = 1; i <= dev->partitions; i++) {
- sprintf(partitionname, "%s%i", filename, i);
+ strfieldcpy(partitionname, filename);
+ strintcat(partitionname, i);
unlink(partitionname);
}
}