[systemd-commits] src/shared src/test

Dave Reisner dreisner at kemper.freedesktop.org
Sun Oct 6 15:30:39 PDT 2013


 src/shared/util.c            |    2 +-
 src/test/test-device-nodes.c |    4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 1d5989fd803d2019de0f6aaaf3cfb1cb2bbc3cdb
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Sun Oct 6 18:26:23 2013 -0400

    shared/util: fix off-by-one error in tag_to_udev_node
    
    Triggered false negatives when encoding a string which needed every
    character to be escaped, e.g. "LABEL=/".

diff --git a/src/shared/util.c b/src/shared/util.c
index 82f4221..31cea79 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -3527,7 +3527,7 @@ static char *tag_to_udev_node(const char *tagvalue, const char *by) {
         if (u == NULL)
                 return NULL;
 
-        enc_len = strlen(u) * 4;
+        enc_len = strlen(u) * 4 + 1;
         t = new(char, enc_len);
         if (t == NULL)
                 return NULL;
diff --git a/src/test/test-device-nodes.c b/src/test/test-device-nodes.c
index 2f3dedb..59ba4be 100644
--- a/src/test/test-device-nodes.c
+++ b/src/test/test-device-nodes.c
@@ -26,7 +26,7 @@
 
 /* helpers for test_encode_devnode_name */
 static char *do_encode_string(const char *in) {
-        size_t out_len = strlen(in) * 4;
+        size_t out_len = strlen(in) * 4 + 1;
         char *out = malloc(out_len);
 
         assert_se(out);
@@ -46,6 +46,8 @@ static void test_encode_devnode_name(void) {
         assert_se(expect_encoded_as("pinkiepie", "pinkiepie"));
         assert_se(expect_encoded_as("valíd\\ųtf8", "valíd\\x5cųtf8"));
         assert_se(expect_encoded_as("s/ash/ng", "s\\x2fash\\x2fng"));
+        assert_se(expect_encoded_as("/", "\\x2f"));
+        assert_se(expect_encoded_as("!", "\\x21"));
 }
 
 int main(int argc, char *argv[]) {



More information about the systemd-commits mailing list