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

Security? raw_object_snapshot.cc:2517: error: unreachable code, Abort trap: 6 #9617

Closed
kevmoo opened this issue Apr 3, 2013 · 3 comments
Closed
Assignees
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.

Comments

@kevmoo
Copy link
Member

kevmoo commented Apr 3, 2013

Dart VM version: 0.4.4.4 r20810
Mac

This console output:

/Volumes/data/b/build/slave/dart-editor-mac-trunk/build/dart/runtime/vm/raw_object_snapshot.cc:2517: error: unreachable code
Abort trap: 6

This code:

main() {
  spawnFunction(runTest).call(null);
}

runTest() {
  port.receive((param, sendport) {
    try {
      throw 'sorry';
    } catch (e, stack) {
      sendport.send(stack);
    }
  });
}

The only other issue I saw with "Abort trap: 6" was issue #1755, which was also marked "security", so I'm playing along.

@kevmoo
Copy link
Member Author

kevmoo commented Apr 3, 2013

Obviously I'm getting yelled at for sending the stack trace via the isolate.

@iposva-google
Copy link
Contributor

This is different a different problem. Every time you hit UNREACHABLE in the VM you get the "Abort trap".


Set owner to @a-siva.
Removed Security label.
Added Accepted label.

@a-siva
Copy link
Contributor

a-siva commented Apr 19, 2013

@kevmoo kevmoo added Type-Defect area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. labels Apr 19, 2013
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
Projects
None yet
Development

No branches or pull requests

3 participants