18300a3aa7
The C++ standard library uses the name "release" for the operation we call "detach". Rewriting each "detach(" to "release(" brings us a step closer to using standard library types directly (e.g. std::unique_ptr instead of SkAutoTDelete). This was a fairly blind transformation. There may have been unintentional conversions in here, but it's probably for the best to have everything uniformly say "release". BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1809733002 Review URL: https://codereview.chromium.org/1809733002
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "Resources.h"
|
|
#include "Test.h"
|
|
#include "SkBitmap.h"
|
|
#include "SkCodec.h"
|
|
#include "SkStream.h"
|
|
#include "SkOSFile.h"
|
|
|
|
DEF_TEST(BadImage, reporter) {
|
|
const char* const badImages [] = {
|
|
"sigabort_favicon.ico",
|
|
"sigsegv_favicon.ico",
|
|
"sigsegv_favicon_2.ico",
|
|
"ico_leak01.ico",
|
|
"ico_fuzz0.ico",
|
|
"ico_fuzz1.ico",
|
|
"skbug3442.webp",
|
|
"skbug3429.webp",
|
|
};
|
|
|
|
const char* badImagesFolder = "invalid_images";
|
|
|
|
SkString resourcePath = GetResourcePath(badImagesFolder);
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(badImages); ++i) {
|
|
SkString fullPath = SkOSPath::Join(resourcePath.c_str(), badImages[i]);
|
|
SkAutoTDelete<SkStream> stream(SkStream::NewFromFile(fullPath.c_str()));
|
|
SkAutoTDelete<SkCodec> codec(SkCodec::NewFromStream(stream.release()));
|
|
|
|
// These images are corrupt. It's not important whether we succeed/fail in codec
|
|
// creation or decoding. We just want to make sure that we don't crash.
|
|
if (codec) {
|
|
SkBitmap bm;
|
|
bm.allocPixels(codec->getInfo());
|
|
codec->getPixels(codec->getInfo(), bm.getPixels(),
|
|
bm.rowBytes());
|
|
}
|
|
}
|
|
}
|