Fredrik Roubert 2024-03-12 15:45:20 +01:00 committed by Fredrik Roubert
parent 1a4fc9b009
commit 3000bfb67e
2 changed files with 6 additions and 4 deletions

View file

@ -4,6 +4,7 @@
// Fuzzer for ICU RelativeDateTimeFormatter.
#include <cstring>
#include <memory>
#include "fuzzer_utils.h"
@ -48,8 +49,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
context = validCapitalizations[
static_cast<int>(context) %
(sizeof(validCapitalizations) / sizeof(UDisplayContext))];
formatter.reset(new icu::RelativeDateTimeFormatter(
locale, nullptr, style, context, status));
formatter =
std::make_unique<icu::RelativeDateTimeFormatter>(locale, nullptr, style, context, status);
if (U_SUCCESS(status)) {
URelativeDateTimeUnit unit;

View file

@ -2,6 +2,7 @@
// License & terms of use: http://www.unicode.org/copyright.html
#include <iostream>
#include <memory>
#include <stack>
#include "filterrb.h"
@ -150,7 +151,7 @@ SimpleRuleBasedPathFilter::Tree::Tree(const Tree& other)
: fIncluded(other.fIncluded), fChildren(other.fChildren) {
// Note: can't use the default copy assignment because of the std::unique_ptr
if (other.fWildcard) {
fWildcard.reset(new Tree(*other.fWildcard));
fWildcard = std::make_unique<Tree>(*other.fWildcard);
}
}
@ -181,7 +182,7 @@ void SimpleRuleBasedPathFilter::Tree::applyRule(
if (key == "*") {
// Case 1: Wildcard
if (!fWildcard) {
fWildcard.reset(new Tree());
fWildcard = std::make_unique<Tree>();
}
// Apply the rule to fWildcard and also to all existing children.
it++;