Skip to content

Commit dd1f6cc

Browse files
authored
[js/webgpu] resolve codescan alert (#19343)
### Description resolve codescan alert: https://github.com/microsoft/onnxruntime/security/code-scanning/17687
1 parent d73131c commit dd1f6cc

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

js/web/lib/wasm/jsep/backend-webgpu.ts

+5-7
Original file line numberDiff line numberDiff line change
@@ -705,13 +705,11 @@ export class WebGpuBackend {
705705

706706
captureBegin(): void {
707707
LOG_DEBUG('info', 'captureBegin');
708-
let sessionCommandList = this.capturedCommandList.get(this.currentSessionId!);
709-
let sessionPendingKernels = this.capturedPendingKernels.get(this.currentSessionId!);
710-
if (!sessionCommandList) {
711-
sessionCommandList = [];
712-
this.capturedCommandList.set(this.currentSessionId!, sessionCommandList);
713-
sessionPendingKernels = [];
714-
this.capturedPendingKernels.set(this.currentSessionId!, sessionPendingKernels);
708+
if (!this.capturedCommandList.get(this.currentSessionId!)) {
709+
this.capturedCommandList.set(this.currentSessionId!, []);
710+
}
711+
if (!this.capturedPendingKernels.get(this.currentSessionId!)) {
712+
this.capturedPendingKernels.set(this.currentSessionId!, []);
715713
}
716714
// flush the left commands before we change the status.
717715
this.flush();

0 commit comments

Comments
 (0)