Skip to content

Commit 04f3ff5

Browse files
cuiziweizwxiaoxiang781216
authored andcommitted
nuttx/note:fix runtime error.
note/note_driver.c:1405:11: runtime error: null pointer passed as argument 2, which is declared to never be null #0 0x33bf5cc in sched_note_event_ip note/note_driver.c:1405 #1 0x33bfb57 in note_driver_instrument_enter note/note_initialize.c:55 #2 0x347b084 in __cyg_profile_func_enter misc/lib_instrument.c:68 apache#3 0x34179de in binder_initialize binder/binder.c:669 apache#4 0x339a936 in drivers_initialize /home/cuiziwei/vela/happy/nuttx/drivers/drivers_initialize.c:242 apache#5 0x335a179 in nx_start init/nx_start.c:632 apache#6 0x32f755c in main sim/sim_head.c:180 apache#7 0xf6821518 (/lib/i386-linux-gnu/libc.so.6+0x21518) (BuildId: 7f64b917aaa97b9680d8e44931bf7611c5a1f036) apache#8 0xf68215f2 in __libc_start_main (/lib/i386-linux-gnu/libc.so.6+0x215f2) (BuildId: 7f64b917aaa97b9680d8e44931bf7611c5a1f036) apache#9 0x32b401a in _start (/home/cuiziwei/vela/happy/nuttx/nuttx+0x32b401a) (BuildId: 33f8f7b361d44a008de87fea1bc970b22b48b700) Signed-off-by: cuiziwei <cuiziwei@xiaomi.com>
1 parent d469216 commit 04f3ff5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

drivers/note/note_driver.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1504,7 +1504,10 @@ void sched_note_event_ip(uint32_t tag, uintptr_t ip, uint8_t event,
15041504

15051505
note_common(tcb, &note->nev_cmn, length, event);
15061506
note->nev_ip = ip;
1507-
memcpy(note->nev_data, buf, length - SIZEOF_NOTE_EVENT(0));
1507+
if (buf != NULL)
1508+
{
1509+
memcpy(note->nev_data, buf, length - SIZEOF_NOTE_EVENT(0));
1510+
}
15081511
}
15091512

15101513
/* Add the note to circular buffer */

0 commit comments

Comments
 (0)