fix: Fix wrong judgment in los_trace.c to avoid null pointer access.
Fix wrong judgment in los_trace.c to avoid null pointer access. Close #I3RT9F Change-Id: Id37b80fc6acc085205695318232d5f4fd75472aa
This commit is contained in:
parent
e7c0c5173a
commit
4d863e985b
|
@ -454,7 +454,7 @@ UINT32 OsShellCmdTraceSwitch(INT32 argc, const CHAR **argv)
|
|||
if (isdigit(argv[0][0]) != 0) {
|
||||
CHAR *endPtr = NULL;
|
||||
UINT32 traceType = strtoul(argv[0], &endPtr, 0);
|
||||
if ((endPtr != NULL) || (*endPtr != 0)) {
|
||||
if ((endPtr == NULL) || (*endPtr != 0)) {
|
||||
PRINTK("Unknown option: %s\n", argv[0]);
|
||||
goto TRACE_HELP;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue