OSDN Git Service

comma_scan()'s clean option wasn't removing entry at end of list.
authorRob Landley <rob@landley.net>
Tue, 11 Jul 2017 10:16:09 +0000 (05:16 -0500)
committerRob Landley <rob@landley.net>
Tue, 11 Jul 2017 10:16:09 +0000 (05:16 -0500)
lib/getmountlist.c

index 332852a..f7d58ab 100644 (file)
@@ -97,7 +97,10 @@ int comma_scan(char *optlist, char *opt, int clean)
     no = 2*(*s == 'n' && s[1] == 'o');
     if (optlen == len-no && !strncmp(opt, s+no, optlen)) {
       got = !no;
-      if (clean && optlist) memmove(s, optlist, strlen(optlist)+1);
+      if (clean) {
+        if (optlist) memmove(s, optlist, strlen(optlist)+1);
+        else *s = 0;
+      }
     }
   }