• Daniel Martí's avatar
    reflect: don't panic in ArrayOf if elem size is 0 · 9bced477
    Daniel Martí authored
    We do a division by the elem type size to check if the array size would
    be too large for the virtual address space. This is a silly check if the
    size is 0, but the problem is that it means a division by zero and a
    panic.
    
    Since arrays of empty structs are valid in a regular program, make them
    also work in reflect.
    
    Use a separate, explicit test with struct{}{} to make sure the test for
    a zero-sized type is not confused with the rest.
    
    Fixes #20313.
    
    Change-Id: I47b8b87e6541631280b79227bdea6a0f6035c9e0
    Reviewed-on: https://go-review.googlesource.com/43131
    Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
    Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
    9bced477
Name
Last commit
Last update
.github Loading commit data...
api Loading commit data...
doc Loading commit data...
lib/time Loading commit data...
misc Loading commit data...
src Loading commit data...
test Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
AUTHORS Loading commit data...
CONTRIBUTING.md Loading commit data...
CONTRIBUTORS Loading commit data...
LICENSE Loading commit data...
PATENTS Loading commit data...
README.md Loading commit data...
favicon.ico Loading commit data...
robots.txt Loading commit data...