fixed a wrong return value in __cmp_int_mbs()

This commit is contained in:
hyung-hwan 2019-05-07 07:27:53 +00:00
parent 2ac2ad8200
commit ebc9f5d29c

View File

@ -4377,7 +4377,7 @@ static QSE_INLINE int __cmp_int_mbs (qse_awk_rtx_t* rtx, qse_awk_val_t* left, qs
}
str0 = qse_awk_rtx_valtombsdup(rtx, left, &len0);
if (!str0) return QSE_NULL;
if (!str0) return -1;
if (rtx->gbl.ignorecase)
{