Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

めっちゃ環境依存なバグ #23

Closed
WATLE opened this issue Aug 30, 2023 · 1 comment
Closed

めっちゃ環境依存なバグ #23

WATLE opened this issue Aug 30, 2023 · 1 comment

Comments

@WATLE
Copy link

WATLE commented Aug 30, 2023

import mojimoji
​
def baguru(text):
    text = mojimoji.zen_to_han(text, kana=False)
    
    text = mojimoji.han_to_zen(text, digit=False, ascii=False)
    return text
​
def baguranai(text):
    text = mojimoji.zen_to_han(text, kana=False)
    a=0
    for i in range(10):
        a+=i
    text = mojimoji.han_to_zen(text, digit=False, ascii=False)
    return text
​
text ="゙ンライフレキ"
text = baguru(text)
#text = baguranai(text)
print(text)

この関数を実行したとき, baguru関数を実行すると double free or corruption (out) のバグが出ました。
baguru関数とbaguranai の違いは、間に別の処理が挟まってるかどうかだけです。
ちなみに文字列による差も激しく、 先頭が濁点の場合しかバグりませんでした。

@ikuyamada
Copy link
Member

issueを報告いただきありがとうございます。
最初に濁点がある文字列の場合に変数が正しく初期化されずに処理されてしまう不具合がありましたので、修正させていただきました。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants