回答編集履歴
1
fmt
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
うーん、これもしかしてバッファーオーバーランじゃないですかね?
|
1
|
+
うーん、これもしかしてバッファーオーバーランじゃないですかね?こうなると問題箇所の絞り込みが人力では困難になってきますというかテクニックがないと無理です。
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -9,3 +9,19 @@
|
|
9
9
|
[AddressSanitizer (ASan) for Windows with MSVC – C++ Team Blog](https://devblogs.microsoft.com/cppblog/addresssanitizer-asan-for-windows-with-msvc/)
|
10
10
|
|
11
11
|
に紹介のあるAddressSanitizer とか[VSに備わっているコード分析ツール](https://docs.microsoft.com/ja-jp/visualstudio/code-quality/quick-start-code-analysis-for-c-cpp?view=vs-2019)を使って自動解析させてみてください。
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
これでもだめならDxLibの使ってる関数だけ中身空っぽのモックに差し替えて、Linuxに持っていってvalgrindに掛けるとかしないとだめそう。
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
---
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
遠回りだけど確実な方法はプログラム中でnewもdeleteもmallocもcallocもfreeも書かないことです。代わりにstd::vectorやstd::string、std::uniuqe_ptrやstd::shared_ptrを使います。
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
それから文字列操作をもししているなら、自力でindexアクセスしたりC標準やDxLibの文字列操作系関数を使わないことです。代わりにstd::stringのメンバー関数やargorithmヘッダーの関数群、[fmtlib/fmt](https://github.com/fmtlib/fmt)(sprintf系関数の代替)を使います。
|