Adjust Boost.Locale patch to use NULL instead of nullptr

This commit is contained in:
Jonathan Wakely 2021-03-03 12:05:16 +00:00
parent 325ac22f96
commit 394a768911
2 changed files with 6 additions and 3 deletions

View File

@ -28,7 +28,7 @@ index 7f1ea6a..dc59e8c 100644
tmp.resize(str.length());
icu::Collator *collate = get_collator(level);
- int len = collate->getSortKey(str,&tmp[0],tmp.size());
+ int len = collate->getSortKey(str,tmp.empty()?nullptr:&tmp[0],tmp.size());
+ int len = collate->getSortKey(str,tmp.empty()?NULL:&tmp[0],tmp.size());
if(len > int(tmp.size())) {
tmp.resize(len);
collate->getSortKey(str,&tmp[0],tmp.size());

View File

@ -42,7 +42,7 @@ Name: boost
%global real_name boost
Summary: The free peer-reviewed portable C++ source libraries
Version: 1.75.0
Release: 3%{?dist}
Release: 4%{?dist}
License: Boost and MIT and Python
# Replace each . with _ in %%{version}
@ -1278,8 +1278,11 @@ fi
%{_mandir}/man1/b2.1*
%changelog
* Wed Mar 03 2021 Jonathan Wakely <jwakely@redhat.com> - 1.75.0-4
- Adjust Boost.Locale patch to use NULL instead of nullptr
* Tue Feb 02 2021 Thomas Rodgers <trodgers@redhat.com> - 1.75.0-3
- Patch for https://bugzilla.redhat.com/show_bug.cgi?id=1923740
- Patch Boost.Build to find boost-build.jam (#1923740)
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.75.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild