diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-07-26 11:32:58 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-07-26 11:35:27 +0200 |
commit | 60c19683b5897beefa0e799b7efdc3e2b4da528e (patch) | |
tree | 140488794a282cc231f4c19323012f64dd20b821 /solenv | |
parent | 4155bc56ad2910d8acc5d6468eb1ee2a3cffcd20 (diff) |
These two strings are non-nullable so fail if they are null
Change-Id: I7ea1a8faff96aca54f6bad5e811841f58aadd382
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/windows/idtglobal.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/windows/idtglobal.pm b/solenv/bin/modules/installer/windows/idtglobal.pm index d3495c91f448..8cbfcb24b2b8 100644 --- a/solenv/bin/modules/installer/windows/idtglobal.pm +++ b/solenv/bin/modules/installer/windows/idtglobal.pm @@ -479,7 +479,7 @@ sub write_idt_header { $oneline = "MsiShortcutProperty\tShortcut_\tPropertyKey\tPropVariantValue\n"; push(@{$idtref}, $oneline); - $oneline = "s72\ts72\tS255\tS255\n"; + $oneline = "s72\ts72\ts255\ts255\n"; push(@{$idtref}, $oneline); $oneline = "MsiShortcutProperty\tMsiShortcutProperty\n"; push(@{$idtref}, $oneline); |