With the latest 'Release' branch of Golang the asn1-ber package fails to build properly due to changes with the reflect package. The change was reflect.NewValue no longer exists and was replaced with reflect.ValueOf.
RESOLUTION:
@@ -383,7 +383,7 @@
p.Description = Description
if Value != nil {
- v := reflect.NewValue(Value)
+ v := reflect.ValueOf(Value)
if ( ClassType == ClassUniversal ) {
switch Tag {
With the latest 'Release' branch of Golang the asn1-ber package fails to build properly due to changes with the reflect package. The change was reflect.NewValue no longer exists and was replaced with reflect.ValueOf.
RESOLUTION: