Skip to content
Snippets Groups Projects
Commit 4ed7d795 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[Lib] fix crash when truncating rich text buffer

parent f748f666
No related branches found
No related tags found
No related merge requests found
...@@ -152,12 +152,10 @@ let truncate_text buffer size = ...@@ -152,12 +152,10 @@ let truncate_text buffer size =
let n_right = size - n_left - 5 in let n_right = size - n_left - 5 in
if p > 0 then if p > 0 then
Buffer.blit buffer.content p (Buffer.to_bytes buffer.content) 0 n_left; Buffer.blit buffer.content p (Buffer.to_bytes buffer.content) 0 n_left;
Buffer.add_substring buffer.content "[...]" n_left 5 ; let buf_right = Buffer.sub buffer.content (q-n_right+1) n_right in
Buffer.blit Buffer.truncate buffer.content n_left;
buffer.content (q-n_right+1) Buffer.add_string buffer.content "[...]";
(Buffer.to_bytes buffer.content) (n_left + 5) Buffer.add_string buffer.content buf_right;
n_right ;
Buffer.truncate buffer.content size ;
end end
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment