Go to file
Guido Aulisi 0a9adfc498 Rebuilt for possible GCC 10 bug on power64 and arm
On ppc64le this piece of code in sord.c does not correctly
evaluate the exit condition when O2 optimization is used.
It seems that the end of the iterator is never evaluated.

    // Free quads
    ZixBTreeIter* t = zix_btree_begin(model->indices[DEFAULT_ORDER]);
    for (; !zix_btree_iter_is_end(t); zix_btree_iter_increment(t)) {
        free(zix_btree_get(t));
    }
    zix_btree_iter_free(t);

See sord.c line 748
2020-03-15 01:26:32 +01:00
.gitignore Update to 0.16.4 2019-12-06 21:10:58 +01:00
sord.spec Rebuilt for possible GCC 10 bug on power64 and arm 2020-03-15 01:26:32 +01:00
sources Update to 0.16.4 2019-12-06 21:10:58 +01:00