We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c549e20 commit 6531d3eCopy full SHA for 6531d3e
gnucash/import-export/qif-imp/qif-to-gnc.scm
@@ -434,7 +434,7 @@
434
;; there aren't at least 2 splits and that will cause a
435
;; UAF in xaccTransRecordPrice. See https://bugs.gnucash.org/show_bug.cgi?id=799420
436
(let ((splits (qif-xtn:splits xtn)))
437
- (if (not (or (qif-xtn:mark xtn) (or (null? splits) (null? (cdr splits)))))
+ (if (not (or (qif-xtn:mark xtn) (null? splits)))
438
;; Convert into a GnuCash transaction.
439
(let ((gnc-xtn (xaccMallocTransaction
440
(gnc-get-current-book))))
0 commit comments