[bug #24588] $$(eval) with SECONDEXPANSION causes segmentation faults

2009-06-03 Thread Paul D. Smith
Update of bug #24588 (project make): Status:None = Fixed Assigned to:None = psmith Open/Closed:Open = Closed Fixed Release:

[bug #24588] $$(eval) with SECONDEXPANSION causes segmentation faults

2009-06-01 Thread Paul D. Smith
Follow-up Comment #2, bug #24588 (project make): See also duplicate bug #24622 for another example. ___ Reply to this item at: http://savannah.gnu.org/bugs/?24588 ___ Message sent via/by

[bug #24588] $$(eval) with SECONDEXPANSION causes segmentation faults

2008-10-17 Thread Lars S. Jessen
URL: http://savannah.gnu.org/bugs/?24588 Summary: $$(eval) with SECONDEXPANSION causes segmentation faults Project: make Submitted by: ljessen Submitted on: Fri 17 Oct 2008 08:53:14 AM GMT Severity: 3 - Normal

[bug #24588] $$(eval) with SECONDEXPANSION causes segmentation faults

2008-10-17 Thread Lars S. Jessen
Follow-up Comment #1, bug #24588 (project make): Problem is caused by eval_buffer() assuming reading_file != NULL, this is not the case during the secondexpansion phase. Solution: initialize ebuf.floc.filenm to NULL and only set ebuf.floc = *reading_file when reading_file != NULL. See attached