diff options
author | ritsuka <[email protected]> | 2009-08-02 14:58:07 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2009-08-02 14:58:07 +0000 |
commit | 30e5a9e1a2a09f134db33d7779e21cea05203087 (patch) | |
tree | e1c76bd367502818ca8bd07904644fe798848e24 /libhb/deccc608sub.c | |
parent | 6f76fa075fe26dbb103c945cdbd55719379f88a4 (diff) |
First try at fixing a crash in quicktime if the subtitles contains an inverted exclamation point.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2747 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/deccc608sub.c')
-rw-r--r-- | libhb/deccc608sub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/deccc608sub.c b/libhb/deccc608sub.c index 48bb1f73d..5f1e8a14f 100644 --- a/libhb/deccc608sub.c +++ b/libhb/deccc608sub.c @@ -681,7 +681,7 @@ int get_char_in_utf_8 (unsigned char *buffer, unsigned char c) // Returns number *buffer=0x27; return 1; case 0x97: // inverted exclamation mark - *buffer=0xc1; + *buffer=0xc2; *(buffer+1)=0xa1; return 2; case 0x98: // asterisk |