On Fri, Jul 10, 2015, at 02:57 PM, Jan E. Schotsman wrote:
> Hello,
> 
> How can I get rid of warnings about unsafe use of printf?
> 
> char myString[256];
> 
> // set myString in some untransparent way
> 
> printf( myString );  // warning: format string is not a literal  
> (potentially insecure)

Use printf("%s", myString).

--Kyle Sluder

> 
> Xcode 6.3
> 
> TIA,
> 
> Jan E.
>  _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> Xcode-users mailing list      ([email protected])
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/xcode-users/kyle%40ksluder.com
> 
> This email sent to [email protected]
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/xcode-users/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to