Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion treesource.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ static enum markertype guess_value_type(struct property *prop)
nnotcelllbl++;
}

if ((p[len-1] == '\0') && (nnotstring == 0) && (nnul <= (len-nnul))
if ((p[len-1] == '\0') && (nnotstring == 0) && (nnul < (len-nnul))
&& (nnotstringlbl == 0)) {
return TYPE_STRING;
} else if (((len % sizeof(cell_t)) == 0) && (nnotcelllbl == 0)) {
Expand Down