Re: [PATCH] Properly guard against a call without parameters.

2008-09-29 Thread Pascal Obry
Hi Nick, > Really - did you check this with the current version of the windres > sources in the mainline of the binutils repository ? I tried and it did > not seg-fault for me. No, in fact this was tested on the 2.18 branch. Sorry I should have tested that on latest version! > Windres is suppo

Re: [PATCH] Properly guard against a call without parameters.

2008-09-29 Thread Nick Clifton
Hi Pascal, Calling windres without parameter was crashing (segmentation violation). Really - did you check this with the current version of the windres sources in the mainline of the binutils repository ? I tried and it did not seg-fault for me. Windres is supposed to be able to be invoke

[PATCH] Properly guard against a call without parameters.

2008-09-24 Thread Pascal Obry
Calling windres without parameter was crashing (segmentation violation). We properly check the number of argument, if none the usage string is displayed. --- binutils/ChangeLog |7 +++ binutils/windres.c |2 +- 2 files changed, 8 insertions(+), 1 deletions(-) diff --git binutils/Chan