Closed markusC64 closed 6 years ago
fixed
Danke Markus für diesen Hinweis. Viele Grüße, Edilbert
Am 24.06.2018 um 12:12 schrieb markusC64 notifications@github.com:
The reason should be line 3332:
Src = MallocOrDie(strlen(argv[ic] + 4 + 1));
I guess you mean
Src = MallocOrDie(strlen(argv[ic]) + 4 + 1);
With this fix, BSA is working much better on windows.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.
Gerne.
Mit dieser Korrektur ist BSA übrigens "valgind clean" - in der Tat hat "valgrind" unter Linux die Stelle des Fehlers gefunden.
The reason should be line 3332:
Src = MallocOrDie(strlen(argv[ic] + 4 + 1));
I guess you mean
Src = MallocOrDie(strlen(argv[ic]) + 4 + 1);
With this fix, BSA is working much better on windows.