mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This diff fixes the release of ImageRequest object. The responseFutureSplitter_ can be destroyed by the time ~ImageRequest is executed. See P60163877 for original crash (this crash was reproducible when reloading or closing a Fabric screen that contains several images. Reviewed By: shergin Differential Revision: D10282207 fbshipit-source-id: 4f0894959e54f6d15b98e216df102e764866e387
28 lines
564 B
C++
28 lines
564 B
C++
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "ImageManager.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
ImageManager::ImageManager(void *platformSpecificCounterpart) {
|
|
// Not implemented.
|
|
}
|
|
|
|
ImageManager::~ImageManager() {
|
|
// Not implemented.
|
|
}
|
|
|
|
ImageRequest ImageManager::requestImage(const ImageSource &imageSource) const {
|
|
// Not implemented.
|
|
abort();
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|