Remove .orig file

This commit is contained in:
landry 2019-02-19 13:29:07 +00:00
parent cd4ec790e7
commit 83d6c380c9

View File

@ -1,32 +0,0 @@
$OpenBSD: patch-src_engine_util_util-error-context_vala.orig,v 1.1 2019/02/19 13:28:35 landry Exp $
Index: src/engine/util/util-error-context.vala
--- src/engine/util/util-error-context.vala.orig
+++ src/engine/util/util-error-context.vala
@@ -27,16 +27,6 @@ public class Geary.ErrorContext : BaseObject {
/** Name of the function being called. */
public string name = "unknown";
-
- internal StackFrame(Unwind.Cursor frame) {
- uint8 proc_name[256];
- int ret = -frame.get_proc_name(proc_name);
- if (ret == Unwind.Error.SUCCESS ||
- ret == Unwind.Error.NOMEM) {
- this.name = (string) proc_name;
- }
- }
-
public string to_string() {
return this.name;
}
@@ -55,9 +45,6 @@ public class Geary.ErrorContext : BaseObject {
public ErrorContext(GLib.Error thrown) {
this.thrown = thrown;
-
- Unwind.Context trace = Unwind.Context();
- Unwind.Cursor cursor = Unwind.Cursor.local(trace);
// This misses the first frame, but that's this
// constructor call, so we don't really care.