Skip to content

Commit 1c240fc

Browse files
committed
fix unregister
1 parent 7b04fba commit 1c240fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

panda/plugins/hypercaller/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ This was designed primarily for Python use cases:
5151
MAGIC = 0x12345678
5252
@panda.hypercall(MAGIC)
5353
def hypercall(cpu):
54-
print("Hello from my hypercall!"
54+
print("Hello from my hypercall!")
5555

5656
```
5757

panda/plugins/pri_taint/pri_taint.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ bool init_plugin(void *self) {
464464
}
465465

466466
void uninit_plugin(void *self) {
467-
// unregister_hypercall(LAVA_MAGIC);
467+
unregister_hypercall(LAVA_MAGIC);
468468
printf("[pri_taint] Unloading plugin\n");
469469
}
470470

0 commit comments

Comments
 (0)