I am fine with either fixes
Sun

2010/10/9 "C. Bergström" <cbergst...@pathscale.com>:
> Steve Ellcey wrote:
>> Index: osprey/driver/file_names.c
>> ===================================================================
>> --- osprey/driver/file_names.c        (revision 3367)
>> +++ osprey/driver/file_names.c        (working copy)
>> @@ -156,7 +156,7 @@ get_object_file (char *src)
>>           !option_was_seen(O_c) &&
>>           keep_flag != TRUE) {
>>         char *p;
>> -       src = strdupa(src);
>> +       src = strcpy(alloca(strlen(src)+1), src);
>>
> We have.....
> src = strcpy(alloca(strlen(src) + sizeof '\0'), src);
>
> ------------------------------------------------------------------------------
> Beautiful is writing same markup. Internet Explorer 9 supports
> standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
> Spend less time writing and  rewriting code and more time creating great
> experiences on the web. Be a part of the beta today.
> http://p.sf.net/sfu/beautyoftheweb
> _______________________________________________
> Open64-devel mailing list
> Open64-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/open64-devel
>

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
Open64-devel mailing list
Open64-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/open64-devel

Reply via email to