Skip to content

Commit e3997cc

Browse files
Fix infinite bad recursion
1 parent d2edc9f commit e3997cc

File tree

1 file changed

+1
-1
lines changed
  • packages/npm-packages/ruby-wasm-wasi/src

1 file changed

+1
-1
lines changed

packages/npm-packages/ruby-wasm-wasi/src/binding.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export class ComponentBinding implements Binding {
7676
return this.underlying.rbErrinfo();
7777
}
7878
rbClearErrinfo(): void {
79-
return this.rbClearErrinfo();
79+
return this.underlying.rbClearErrinfo();
8080
}
8181
rstringPtr(value: RbAbiValue): string {
8282
return this.underlying.rstringPtr(value);

0 commit comments

Comments
 (0)