Public bug reported:

Binary package hint: vim-runtime

vim/vim73/tools/shtags.pl have format string bug .

test case :
emanuel@emanuel-desktop:~$ echo 1 > '/tmp/a%n'
emanuel@emanuel-desktop:~$ /usr/share/vim/vim73/tools/shtags.pl '/tmp/a%n'
Modification of a read-only value attempted at 
/usr/share/vim/vim73/tools/shtags.pl line 142, <> line 1.

the bug can be found at :
printf "Using $shell for $ARGV\n";

fix : use %s for $shell and $ARGV
printf "Using %s for %s\n" , $shell , $ARGV ;

** Affects: vim (Ubuntu)
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/793703

Title:
  Format string bug in shtags.pl

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to