diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2009-10-23 17:28:10 +0200 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2009-10-23 17:28:10 +0200 |
commit | 220a3379d96e00c28502cb237fb10519c4988dd0 (patch) | |
tree | d4ddeea562ff5eb00d84067f7e893895fce68d7f /solenv | |
parent | 099781c3ed4b97abb73891b63e796d60b4951bb2 (diff) |
ause109: #i106228# generate names that don't trigger windows Data Execution Prevention
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/mhids.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/solenv/bin/mhids.pl b/solenv/bin/mhids.pl index f7e5193a3ec4..d94436d787da 100644 --- a/solenv/bin/mhids.pl +++ b/solenv/bin/mhids.pl @@ -138,7 +138,9 @@ $filename =~ s/\\/\//g; $filebase = $filename; $filebase =~ s/.*[\\\/]//; $filebase =~ s/\..*?$//; -$workfile = "$tmpdir/${filebase}_".$$; +# now stript it to something that doesn't togger vista execution prevention :( +$flbs =~ s/[aeiou]//g; +$workfile = "$tmpdir/${flbs}_".$$; #$workfile =~ s/setup/set_up/; # now get $workfile ready for shell usage... |