This commit is contained in:
pancake 2014-11-19 17:20:41 +01:00
parent ccf0ad030d
commit d3fa10817a

View File

@ -2237,6 +2237,10 @@ static int runword (RAnalEsil *esil, const char *word) {
return op (esil);
}
}
if (!*word) {
// skip empty words
return;
}
// push value
if (!r_anal_esil_push (esil, word)) {
eprintf ("ESIL stack is full\n");