Changeset 2204ea in git


Ignore:
Timestamp:
Oct 12, 2016, 12:45:59 PM (7 years ago)
Author:
Andreas Steenpass <steenpass@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
4945c50b994bee8d706c5bb100a67e95a696e41d
Parents:
1717fb84c019667b31e7bfa9b5ba19fcbceba9ea
git-author:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2016-10-12 12:45:59+02:00
git-committer:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2017-12-15 12:17:07+01:00
Message:
fix: check for NULL pointer in insert_first_term()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/syz4.cc

    r1717fb r2204ea  
    563563    p = r;                                                        \
    564564    q = p->next;                                                  \
    565     if (p_LmCmp(p, q, R) != 1) {                                  \
     565    if (q != NULL && p_LmCmp(p, q, R) != 1) {                     \
    566566        while (q->next != NULL && p_LmCmp(p, q->next, R) == -1) { \
    567567            pIter(q);                                             \
Note: See TracChangeset for help on using the changeset viewer.