- Notifications
You must be signed in to change notification settings - Fork28
Commitfdf87ed
committed
Fix failure-to-copy bug in commit6f6b99d.
The previous coding of get_qual_for_list() was careful to copy everythingit was using from the input data structure. The new version missedmaking a copy of pass-by-ref datum values that it's inserting into Consts.This is not optional, however, as revealed by buildfarm failures onmachines running -DRELCACHE_FORCE_RELEASE: we're copying from a relcacheentry that could go away before the required lifespan of our outputexpression. I'm pretty sure -DCLOBBER_CACHE_ALWAYS machines won't likethis either, but none of them have reported in yet.1 parente56dd7c commitfdf87ed
1 file changed
+8
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1559 | 1559 | | |
1560 | 1560 | | |
1561 | 1561 | | |
1562 | | - | |
| 1562 | + | |
| 1563 | + | |
| 1564 | + | |
| 1565 | + | |
| 1566 | + | |
1563 | 1567 | | |
1564 | 1568 | | |
1565 | 1569 | | |
1566 | 1570 | | |
1567 | | - | |
| 1571 | + | |
| 1572 | + | |
| 1573 | + | |
1568 | 1574 | | |
1569 | 1575 | | |
1570 | 1576 | | |
| |||
0 commit comments
Comments
(0)