forked from KolibriOS/kolibrios
Fix icon search function in box_lib/filebrowser
Consider a config file with the following two lines: abc=1 c=2 Previously, the first line matched *.c files, because it had the 'c=1' substring. Now we skip until the next line as soon as 'abc' doesn't match 'c'.
This commit is contained in:
@@ -777,8 +777,13 @@ fb_get_icon_number:
|
|||||||
.search_association:
|
.search_association:
|
||||||
cmp edx,eax
|
cmp edx,eax
|
||||||
jbe .end
|
jbe .end
|
||||||
mov esi,fb_extension_start
|
|
||||||
inc eax
|
inc eax
|
||||||
|
cmp byte[eax], 0xa
|
||||||
|
jne .search_association
|
||||||
|
inc eax
|
||||||
|
cmp edx,eax
|
||||||
|
jbe .end
|
||||||
|
mov esi,fb_extension_start
|
||||||
mov ecx,eax
|
mov ecx,eax
|
||||||
mov ebx,eax
|
mov ebx,eax
|
||||||
cld
|
cld
|
||||||
|
Reference in New Issue
Block a user