aboutsummaryrefslogtreecommitdiff
path: root/src/unit/string.unit
diff options
context:
space:
mode:
authorMike Buland <mbuland@penny-arcade.com>2021-07-30 09:16:27 -0700
committerMike Buland <mbuland@penny-arcade.com>2021-07-30 09:16:27 -0700
commit0fbcc3a0c7ef4835c77c5d8b87cc8732cc3f90df (patch)
treed214ecd864bbef469a9378ac5f3c05f6cd74f4da /src/unit/string.unit
parent2745b2811b03e83c165b07801704f32fc5bc588d (diff)
downloadlibbu++-0fbcc3a0c7ef4835c77c5d8b87cc8732cc3f90df.tar.gz
libbu++-0fbcc3a0c7ef4835c77c5d8b87cc8732cc3f90df.tar.bz2
libbu++-0fbcc3a0c7ef4835c77c5d8b87cc8732cc3f90df.tar.xz
libbu++-0fbcc3a0c7ef4835c77c5d8b87cc8732cc3f90df.zip
Fixed uninitializsed bug in Bu::Array::setSize.
When setCapacity was used before setSize some elements were not being properly initialized in the array.
Diffstat (limited to '')
-rw-r--r--src/unit/string.unit6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/unit/string.unit b/src/unit/string.unit
index 1f4ca7e..6242eff 100644
--- a/src/unit/string.unit
+++ b/src/unit/string.unit
@@ -586,6 +586,12 @@ suite String
586 { 586 {
587 unitTest( Bu::String("0x%{1}00").arg( 75, Bu::Fmt::hex() ).end() == "0x4b00" ); 587 unitTest( Bu::String("0x%{1}00").arg( 75, Bu::Fmt::hex() ).end() == "0x4b00" );
588 } 588 }
589
590 test sharedEmpty1
591 {
592 Bu::String a;
593 Bu::String b = a.clone();
594 }
589} 595}
590// 03F09CA4F58AC8CA0E80F0D9D409D0A60700A192270004BC3A99E91D0001034F544603362E35013103313130019CA4F58AC8CA0E0002830800002C4200008AC200EBF7D9D4090127BB010000E3 596// 03F09CA4F58AC8CA0E80F0D9D409D0A60700A192270004BC3A99E91D0001034F544603362E35013103313130019CA4F58AC8CA0E0002830800002C4200008AC200EBF7D9D4090127BB010000E3
591// 597//