You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
os-impl-sytab::OS_SymTableIteratro_Impl will exit a symbol table dump if it detects a symbol name that violates the maximum defined length. This results in an inability to dump the symbol map if a symbol does violate the max length. Consider skipping the symbol or truncating it + notify user via entry in dump file.
if (memchr(name, 0, OS_MAX_SYM_LEN) == NULL)
{
OS_DEBUG("%s(): symbol name too long\n", __func__);
state->StatusCode = OS_ERR_NAME_TOO_LONG;
return (false);
}
path to file: osal/src/os/vxworks/src/os-impl-sytab.c
Requester Info
Dan Knutsen
NASA Goddard
The text was updated successfully, but these errors were encountered:
os-impl-sytab::OS_SymTableIteratro_Impl will exit a symbol table dump if it detects a symbol name that violates the maximum defined length. This results in an inability to dump the symbol map if a symbol does violate the max length. Consider skipping the symbol or truncating it + notify user via entry in dump file.
path to file: osal/src/os/vxworks/src/os-impl-sytab.c
Requester Info
Dan Knutsen
NASA Goddard
The text was updated successfully, but these errors were encountered: