8

I am getting crash like this in fabric crashlytics:

WebCore

bmalloc::IsoAllocator >::allocateSlow(bool)

Any clue to resolve this issue?

Scorpian Alive
  • 734
  • 8
  • 21

2 Answers2

1

i'm getting same crash.

in my case, when large html load on webview and inline css in the html was reason.

check your html content.


this is knowledge in my case. not a question.

more detail is

i'm using UIWebView.

my same crash was to occur when client updated on ios 11.3

i checked all webview.

when call loadrequest on uiwebview function.

crash occured when large html load. the html content size was

char length 80000 ~ 200000. it's breaking on css in html content.

this is my case. I hope it helps.

  • I got the same error and the answer is the root cause of my issue. I've appended too much data to the webview and got this error. Reducing the amount of data resolved my issue. – deadcode Sep 04 '18 at 15:49
0

In my case it helped to set the webView.delegate to nil after I used the webView.

tuvok
  • 679
  • 5
  • 16