]> granicus.if.org Git - graphviz/commit
common scanEntity: use a more appropriate type for 'len'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 23 Dec 2022 03:04:58 +0000 (19:04 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 24 Dec 2022 18:48:38 +0000 (10:48 -0800)
commit3a2456e7d3d7e4ac2a79f84bc61702d029687a52
tree1806b9cff60ed302db1a9b860b632722ad9eb7df
parent252e4f7c82c69e061a04a8456f844966d088062a
common scanEntity: use a more appropriate type for 'len'

This addresses a problem where the subtraction of two pointers, `endp - t`, can
in theory exceed the size of an `int`. In practice this cannot occur, but using
a more correct type squashes a -Wconversion and -Wsign-conversion warning in
this code.
lib/common/utils.c