| Submitter | Luis Henriques |
|---|---|
| Date | March 14, 2013, 10:35 a.m. |
| Message ID | <1363257381-15900-29-git-send-email-luis.henriques@canonical.com> |
| Download | mbox | patch |
| Permalink | /patch/227587/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/kernel/sysctl_binary.c b/kernel/sysctl_binary.c index a650694..9f9aa32 100644 --- a/kernel/sysctl_binary.c +++ b/kernel/sysctl_binary.c @@ -1194,9 +1194,10 @@ static ssize_t bin_dn_node_address(struct file *file, /* Convert the decnet address to binary */ result = -EIO; - nodep = strchr(buf, '.') + 1; + nodep = strchr(buf, '.'); if (!nodep) goto out; + ++nodep; area = simple_strtoul(buf, NULL, 10); node = simple_strtoul(nodep, NULL, 10);