LINUX.IE, website of the Irish Linux Users' Group
Tux rules!

   
Home
New Users
Articles
Download
Projects
Community
Vendors

  Print Version
Email to...
 
Archives:


planetILUG

Recent News

News Archive


Join the
ILUG
on FaceBook


Join the
ILUG
on LinkedIn


Join the
ILUG SETI
Group



















 
 :: Mailing Lists

[ILUG] Serial Port

[ILUG] Serial Port

Kenn Humborg kenn at bluetree.ie
Tue Apr 11 16:08:18 IST 2000


> Actually in general terms snprintf() is better full stop, as sprintf()
> is vulnerable to buffer overflows. So if the outgoing_msg buffer is 255
> bytes long, use:
> 
>      bytes_to_write = snprintf(outgoing_msg,255,"%s %d",a_string,date);

And, since snprintf() won't fill in a NULL if the 255-char 
limit is reached, you really need to do:

   snprintf(outgoing_msg,255,"%s %d",a_string,date);
   outgoing_msg[255] = '\0';
   bytes_to_write = strlen(outgoing_msg);

Of course, you should really say sizeof(outgoing_msg)
rather than hard-coding 255.

Later,
Kenn






More information about the ILUG mailing list
Read this without the formatting.
                                                                                                    

 

Hosted by HEAnet


Maintained by the ILUG website team. The aim of Linux.ie is to support and help commercial and private users of Linux in Ireland. You can display ILUG news in your own webpages, read backend information to find out how. Networking services kindly provided by HEAnet, server kindly donated by Dell. Linux is a trademark of Linus Torvalds, used with permission. No penguins were harmed in the production or maintenance of this highly praised website. Looking for the Indian Linux Users' Group? Try here. If you've read all this and aren't a lawyer: you should be!
RSS Version
Powered by Dell