-2

enter image description here

I already add ASAN_OPTIONS='halt_on_error=0', but it just aborts.

1 Answers1

0

Your program did something like this:

const char *s = getenv("FOO");  // May return NULL
std::string str(p);             // Will crash if p is NULL

How do I continue

You don't: your program is crashing. You'll have to fix the bug first.

Employed Russian
  • 199,314
  • 34
  • 295
  • 362