mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
Bug 945: Don't crash if the error message is not a string.
This commit is contained in:
parent
20fbefbe18
commit
c645ed7485
@ -71,7 +71,13 @@ static void handle_ref(LS, struct session *ses, int func_ref,
|
|||||||
static int
|
static int
|
||||||
l_alert(LS)
|
l_alert(LS)
|
||||||
{
|
{
|
||||||
alert_lua_error((unsigned char *) lua_tostring(S, 1));
|
unsigned char *msg = (unsigned char *) lua_tostring(S, 1);
|
||||||
|
|
||||||
|
/* Don't crash if a script calls e.g. error(nil) or error(error). */
|
||||||
|
if (msg == NULL)
|
||||||
|
msg = "(cannot convert the error message to a string)";
|
||||||
|
|
||||||
|
alert_lua_error(msg);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user