(T3274) Fix Crash issue when removing all code in edc editor

Summary:
- When calculating the position of cursor, the code cannot get group information.
  So, if we cannot get group information including position, add blocking code.

Test Plan:
1. Open Enventor
2. Remove all code after selecting with Ctrl+a
3. Click any part in edj editor

Reviewers: Hermet, Jaehyun_Cho

Subscribers: Jaehyun_Cho, Hermet

Differential Revision: https://phab.enlightenment.org/D3804
This commit is contained in:
Yongheon, Shin 2016-03-18 18:04:15 +09:00 committed by Hermet Park
parent 99b9790146
commit 41a320bc89
1 changed files with 1 additions and 0 deletions

View File

@ -1151,6 +1151,7 @@ edit_part_cursor_set(edit_data *ed,
const char *group_pos = strstr(utf8, group_name_search);
if (!group_pos) return;
char *itr = strstr(group_pos, part_name_search);
const char *part_pos = itr;