Skip to content

Commit 0f59eb1

Browse files
committed
[wasm] Debugger tests - fix build
`/workspaces/runtime/src/mono/wasm/debugger/DebuggerTestSuite/TestHarnessProxy.cs(135,44): error CS8601: Possible null reference assignment` Started being hit with dotnet#82479 . The other instances of this were fixed in dotnet#82803 .
1 parent f604caf commit 0f59eb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mono/wasm/debugger/DebuggerTestSuite/TestHarnessProxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public static void RegisterProxyExitState(string id, RunLoopExitState status)
132132
s_statusTable[id] = status;
133133
// we have the explicit state now, so we can drop the reference
134134
// to the proxy
135-
s_proxyTable.TryRemove(id, out WeakReference<DebuggerProxyBase> _);
135+
s_proxyTable.TryRemove(id, out _);
136136

137137
if (s_exitHandlers.TryRemove(intId, out WeakReference<Action<RunLoopExitState>>? handlerRef)
138138
&& handlerRef.TryGetTarget(out Action<RunLoopExitState>? handler))

0 commit comments

Comments
 (0)