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

C APIのセーフティネットのメッセージを改善する #544

Closed
3 tasks done
qryxip opened this issue Jul 21, 2023 · 0 comments · Fixed by #625
Closed
3 tasks done

C APIのセーフティネットのメッセージを改善する #544

qryxip opened this issue Jul 21, 2023 · 0 comments · Fixed by #625
Labels

Comments

@qryxip
Copy link
Member

qryxip commented Jul 21, 2023

内容

let duplicated = !owned_str_addrs.insert(s.as_ptr() as usize);
assert!(!duplicated, "duplicated");

let duplicated = slices.insert(ptr as usize, slice.into()).is_some();
assert!(!duplicated, "duplicated");

上記のパニックは#538 (comment)のような場合に実際に発生する。この"duplicated"をまともな人間向けのメッセージにする。

Pros 良くなる点

  • 実際にfreeとかをしてしまうユーザーにメッセージを届けることができる。

Cons 悪くなる点

  • 少々の手間

実現方法

  1. "duplicated"から、人間向けのエラーメッセージにする
  2. 軽い単体テストを書く

VOICEVOXのバージョン

N/A

OSの種類/ディストリ/バージョン

  • Windows
  • macOS
  • Linux

その他

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

Successfully merging a pull request may close this issue.

1 participant