into-array fails for sequences starting with nil

Description

The into-array doc string implies that into-array will fall back to an Object array if aseq is supplied, but if the first element of aseq is nil, an NPE occurs.

Approach: Check for nil and use Object as the array type.

Patch: CLJ-1644-array-first-nil-v2.patch

Screened by: Alex Miller

Environment

None

Attachments

2

Activity

Show:

Michael Blume March 13, 2015 at 10:39 PM

done

Alex Miller March 13, 2015 at 2:29 AM

No search through the sequence will pass screening, please just add a nil check.

import March 13, 2015 at 1:06 AM

Comment made by: pbwolf

Searching through the sequence for a non-null item is not consistent with into-array's docstring. The docstring says, "The array's component type is type if provided, or the type of the first value in aseq if present, or Object." In keeping with the docstring, wouldn't a null first item suggest an array of Object?

Working harder than that (by searching the sequence) only delays the inevitable: a whole sequence of nulls producing an Object array, instead of an array of the type the programmer expected, and triggering a run-time crash.

In summary: this patch goes farther than necessary, but even so, it does not cure the risk of unexpected results from nulls. A simpler remedy – returning an array of Object if the first item is null – would be consistent with the docstring and avoid raising unfounded expectations. Adding a statement that null is of type Object to the docstring could help programmers avoid falling into the trap.

Michael Blume January 15, 2015 at 7:45 PM

uploading patch v1 (adding nil as a cons-able element in will also bring this out, but I don't want to make the one patch depend on the other)

Completed

Details

Assignee

Reporter

Labels

Approval

Ok

Patch

Code and Test

Priority

Fix versions

Created January 15, 2015 at 7:25 PM
Updated July 18, 2015 at 12:41 AM
Resolved July 18, 2015 at 12:41 AM