Jsb cc.loader.loadImg 崩溃

立即请求2次相同的url 就会崩溃
cc.loader.loadImg(“http://xxx.com/abc.png”, function(err,texture) {});
cc.loader.loadImg(“http://xxx.com/abc.png”, function(err,texture) {});

更改url 就不会崩溃怀疑是和缓存key有关
cc.loader.loadImg(“http://xxx.com/abc.png?v=1”, function(err,texture) {});
cc.loader.loadImg(“http://xxx.com/abc.png”, function(err,texture) {});

jsb崩溃 win32 h5 正常