Skip to content

Commit 9300b14

Browse files
authored
Merge pull request #44 from semihbkgr/fix-new-function
Use only positive size value in the new function to prevent panics
2 parents d41ce81 + 33dd687 commit 9300b14

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

e2e_test.go

+8
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ func TestMapCreation(t *testing.T) {
1919
if m.Len() != 0 {
2020
t.Errorf("new map should be empty but has %d items.", m.Len())
2121
}
22+
23+
t.Run("default size is used when zero is provided", func(t *testing.T) {
24+
m := New[int, int](0)
25+
index := m.metadata.Load().index
26+
if len(index) != defaultSize {
27+
t.Error("map index size is not as expected")
28+
}
29+
})
2230
}
2331

2432
func TestOverwrite(t *testing.T) {

map.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ type (
6464
func New[K hashable, V any](size ...uintptr) *Map[K, V] {
6565
m := &Map[K, V]{listHead: newListHead[K, V]()}
6666
m.numItems.Store(0)
67-
if len(size) > 0 {
67+
if len(size) > 0 && size[0] != 0 {
6868
m.allocate(size[0])
6969
} else {
7070
m.allocate(defaultSize)

0 commit comments

Comments
 (0)