|
@ -188,9 +188,9 @@ Image::loaded() { |
|
|
|
|
|
|
|
|
void |
|
|
void |
|
|
Image::error(Local<Value> err) { |
|
|
Image::error(Local<Value> err) { |
|
|
if (onerror.IsEmpty()) { |
|
|
HandleScope scope; |
|
|
// TODO:
|
|
|
// TODO: handle exception in onerror segfault
|
|
|
} else { |
|
|
if (!onerror.IsEmpty()) { |
|
|
Local<Value> argv[1] = { err }; |
|
|
Local<Value> argv[1] = { err }; |
|
|
onerror->Call(Context::GetCurrent()->Global(), 1, argv); |
|
|
onerror->Call(Context::GetCurrent()->Global(), 1, argv); |
|
|
} |
|
|
} |
|
|