Bug 35636
| Summary: | lpr lpr_bounce support broken, data file transfername set to <NULL> | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Mitch Sukalski <mitch> | ||||
| Component: | LPRng | Assignee: | Tim Waugh <twaugh> | ||||
| Status: | CLOSED RAWHIDE | QA Contact: | David Lawrence <dkl> | ||||
| Severity: | medium | Docs Contact: | |||||
| Priority: | medium | ||||||
| Version: | 7.1 | CC: | crutcher, drector | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | i386 | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2002-01-21 12:43:29 UTC | Type: | --- | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
|
Description
Mitch Sukalski
2001-04-11 14:38:02 UTC
Created attachment 15164 [details]
fix that saves old transfername in data file line_list for print job after filtering
I will look at this some more, but I dont fully understand the 'correct, behaviour on this one. There are some permission issues. Crutcher, what are the permission issues that you were thinking of?
Mitch, the line:
if (old_transfername) free(old_transfername); old_transfername = 0;
looks like it should instead be:
if (old_transfername) { free(old_transfername); old_transfername = 0; }
Do you agree?
You are correct that the if statement scope should include both the free() and old_transfername = 0 statements...sorry about the slop... Well, it's a moot point anyway. This is fixed upstream (3.8.3). See also bug #20115, which may or may not be related. Fixed in LPRng-3.8.4-1. |