Message ID | 20220624082541.51687-1-szymon.janc@codecoup.pl |
---|---|
State | New |
Headers | show |
Series | monitor: Fix crash when using RTT backend | expand |
diff --git a/monitor/jlink.c b/monitor/jlink.c index f1d8ce660..f9d4037f4 100644 --- a/monitor/jlink.c +++ b/monitor/jlink.c @@ -112,7 +112,7 @@ int jlink_init(void) return -EIO; } - dlclose(so); + /* don't dlclose(so) here cause symbols from it are in use now */ return 0; }