Login
User Name:

Password:



Register

Forgot your password?
 do_advance
Aug 18, 2026 2:23 am
By physicalcamp
Object Reader for SmaugFUSS Created for 1.9.9
Aug 6, 2026 6:33 am
By Angst
Time spamming LOP1.6
Jun 17, 2026 4:03 pm
By Remcon
A Bash Startup Script
Feb 7, 2026 3:49 pm
By eldhamud
Force Skills
Jan 1, 2026 3:58 pm
By Elwood
SWFotEFUSS 1.5.4
Author: Various
Submitted by: Samson
SWRFUSS 1.4.4
Author: Various
Submitted by: Samson
SmaugFUSS 1.9.9
Author: Various
Submitted by: Samson
AFKMud 3.0.0
Author: AFKMud Team
Submitted by: Samson
SillyMUD 1.2a
Author: J. Brothers, J. Sievert, et al
Submitted by: Samson
Users Online
Anthropic, Bing

Members: 0
Guests: 40
Stats
Files
Topics
Posts
Members
Newest Member
518
3,814
19,729
590
physicalcamp

» SmaugMuds » General » Smaug Snippets » Alias Snippet
Forum Rules | Mark all | Recent Posts

Alias Snippet
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Sep 23, 2009 1:44 am   
Go to the top of the page
Go to the bottom of the page

dbna2
Sorcerer
GroupMembers
Posts600
JoinedDec 3, 2008

 
Well I installed it and only got one warning...


In function 'strncat',
inlined from 'check_alias' at alias.c:158:
/usr/include/bits/string3.h:153: warning: call to __builtin___strncat_chk might overflow destination buffer


      strncat( arg, argument, MAX_INPUT_LENGTH );


Any ideas?

Post is unread #2 Sep 23, 2009 10:37 am   
Go to the top of the page
Go to the bottom of the page

David Haley
Sorcerer
GroupMembers
Posts902
JoinedJan 29, 2007

 
What's the declaration for arg and argument here?

Post is unread #3 Sep 23, 2009 11:35 am   
Go to the top of the page
Go to the bottom of the page

dbna2
Sorcerer
GroupMembers
Posts600
JoinedDec 3, 2008

 
bool check_alias( CHAR_DATA * ch, char *command, char *argument )
{
   char arg[MAX_INPUT_LENGTH];

Post is unread #4 Sep 23, 2009 11:36 am   
Go to the top of the page
Go to the bottom of the page

David Haley
Sorcerer
GroupMembers
Posts902
JoinedJan 29, 2007

 
It's probably complaining because you need space for the zero byte. Try

strncat( arg, argument, MAX_INPUT_LENGTH-1 );

Post is unread #5 Sep 23, 2009 11:42 am   
Go to the top of the page
Go to the bottom of the page

dbna2
Sorcerer
GroupMembers
Posts600
JoinedDec 3, 2008

 
Worked thanks.

Pages:<< prev 1 next >>