From e61c12c60b8cc88ae086ea57bf5da2c77c9ff93b Mon Sep 17 00:00:00 2001 From: Mark Becwar Date: Tue, 21 Jun 2016 21:33:07 -0400 Subject: [PATCH] Fix Malformed Windows VERSIONINFO structures. (#17090) The VERSIONINFO structures supplied in the Windows resource files have a mismatch between the codepage specified in the translation table, and the codepage specified in the string tables. This patch fixes both of the rc.in files that are broken. Signed-off-by: Jean-Baptiste Kempf --- modules/module.rc.in | 2 +- src/libvlc_win32_rc.rc.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/module.rc.in b/modules/module.rc.in index b75c725616..8f3ecadef7 100644 --- a/modules/module.rc.in +++ b/modules/module.rc.in @@ -22,6 +22,6 @@ BEGIN END BLOCK "VarFileInfo" BEGIN - VALUE "Translation", 0x409, 1200 + VALUE "Translation", 0x409, 1252 END END diff --git a/src/libvlc_win32_rc.rc.in b/src/libvlc_win32_rc.rc.in index ebebfeec8c..59858627f3 100644 --- a/src/libvlc_win32_rc.rc.in +++ b/src/libvlc_win32_rc.rc.in @@ -22,7 +22,7 @@ BEGIN END BLOCK "VarFileInfo" BEGIN - VALUE "Translation", 0x409, 1200 + VALUE "Translation", 0x409, 1252 END END