From 8c79caff33d904d60e639a0cd4394ccb1379b644 Mon Sep 17 00:00:00 2001 From: Michael Schroeder Date: Fri, 3 May 2013 14:15:37 +0200 Subject: [PATCH] fix iso-8859-1 to utf8 transcoding bug --- ext/repo_rpmdb.c | 2 +- ext/repo_rpmdb_pubkey.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/repo_rpmdb.c b/ext/repo_rpmdb.c index dea9305..5ed1c4e 100644 --- a/ext/repo_rpmdb.c +++ b/ext/repo_rpmdb.c @@ -439,7 +439,7 @@ setutf8string(Repodata *repodata, Id handle, Id tag, const char *str) if (c >= 0xc0) { *bp++ = 0xc3; - c ^= 0x80; + c ^= 0xc0 ^ 0x80; } else if (c >= 0x80) *bp++ = 0xc2; diff --git a/ext/repo_rpmdb_pubkey.c b/ext/repo_rpmdb_pubkey.c index 8b6b453..2ca79c7 100644 --- a/ext/repo_rpmdb_pubkey.c +++ b/ext/repo_rpmdb_pubkey.c @@ -102,7 +102,7 @@ setutf8string(Repodata *repodata, Id handle, Id tag, const char *str) if (c >= 0xc0) { *bp++ = 0xc3; - c ^= 0x80; + c ^= 0xc0 ^ 0x80; } else if (c >= 0x80) *bp++ = 0xc2; -- 2.7.4