]> granicus.if.org Git - graphviz/commitdiff
growops: squash a -Wsign-conversion warning
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 28 Jun 2022 01:44:18 +0000 (18:44 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 3 Jul 2022 04:40:20 +0000 (21:40 -0700)
By construction, `newopn` can only ever be non-negative here. Though in the long
term a more sweeping change should be done to count items in `size_t` variables
pervasively.

lib/pathplan/route.c

index 69bb776fded24913d50035fdf8e8de1a0868a313..e42306a1cebb71220fb4bcf7e7ee57cfa251a16e 100644 (file)
@@ -418,7 +418,7 @@ static int growops(int newopn)
 {
     if (newopn <= opn)
        return 0;
-    if (!(ops = realloc(ops, POINTSIZE * newopn))) {
+    if (!(ops = realloc(ops, POINTSIZE * (size_t)newopn))) {
        return -1;
     }
     opn = newopn;