[Home]

Summary:ASTERISK-10763: ast_variable_new() typo
Reporter:Yuri (ys)Labels:
Date Opened:2007-11-14 09:03:49.000-0600Date Closed:2007-11-14 09:23:03.000-0600
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Core/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:( 0) config.c.diff
Description:In function ast_variable_new()

lines:
variable->value = strcpy(dst, value);
dst += fn_len;

must be:
variable->value = strcpy(dst, value);
dst += val_len;
Comments:By: Tilghman Lesher (tilghman) 2007-11-14 09:23:03.000-0600

Already fixed in SVN.