Pull Request #52
Fix runtime panic in Sentry stacktrace creator
The frame returned by NewStacktraceFrame can be nil in certain cases, for example for `runtime.goexit`. The `raven.NewStacktrace` function handles them by just skipping over them in the stacktrace, so let's port that into this as well.