fix txt_redo_read_unicode() missing break - reading 4 byte unicode would fail, same fix was made for txt_undo_read_unicode() recently.
This commit is contained in:
@@ -1971,6 +1971,7 @@ static unsigned int txt_redo_read_unicode(const char *undo_buf, int *undo_pos, s
|
||||
break;
|
||||
case 4: /* 32-bit unicode symbol */
|
||||
unicode = txt_undo_read_uint32(undo_buf, undo_pos);
|
||||
break;
|
||||
default:
|
||||
/* should never happen */
|
||||
BLI_assert(0);
|
||||
|
||||
Reference in New Issue
Block a user