diff options
author | unknown <bar@bar.mysql.r18.ru> | 2003-09-23 10:41:58 +0500 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2003-09-23 10:41:58 +0500 |
commit | 2d7beead4447606db00bfa41cf5a283dd76577d9 (patch) | |
tree | de9b51e4fbd6f3aa828d4285a5e3368f72d46a94 /mysys/charset.c | |
parent | cdd3acc7e19feb2d19458cfece60539bb92e28b5 (diff) | |
download | mariadb-git-2d7beead4447606db00bfa41cf5a283dd76577d9.tar.gz |
charset.c:
comp_err failed to compile error message file when a
character set was not incompiled.
mysys/charset.c:
comp_err failed to compile error message file when a
character set was not incompiled.
Diffstat (limited to 'mysys/charset.c')
-rw-r--r-- | mysys/charset.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mysys/charset.c b/mysys/charset.c index a485835b636..7d0516ac81b 100644 --- a/mysys/charset.c +++ b/mysys/charset.c @@ -307,9 +307,23 @@ static int add_collation(CHARSET_INFO *cs) } else { + /* + We need the below to make get_charset_name() + and get_charset_number() working even if a + character set has not been really incompiled. + The above functions are used for example + in error message compiler extra/comp_err.c. + If a character set was compiled, this information + will get lost and overwritten in add_compiled_collation(). + */ CHARSET_INFO *dst= all_charsets[cs->number]; + dst->number= cs->number; if (cs->comment) dst->comment= my_once_strdup(cs->comment,MYF(MY_WME)); + if (cs->csname) + dst->csname= my_once_strdup(cs->csname,MYF(MY_WME)); + if (cs->name) + dst->name= my_once_strdup(cs->name,MYF(MY_WME)); } cs->number= 0; cs->primary_number= 0; |