Browse Source

Fixed Thread.Callstack yielding null.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@671 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
David Srbecký 21 years ago
parent
commit
9396ae6c8c
  1. 3
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Thread.cs

3
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Thread.cs

@ -219,9 +219,12 @@ namespace DebuggerLibrary
} catch (COMException) { } catch (COMException) {
// TODO // TODO
}; };
if (function != null) {
yield return function; yield return function;
} }
} }
}
} // get } // get
} // End of public FunctionCollection Callstack } // End of public FunctionCollection Callstack

Loading…
Cancel
Save