in reply to Segmentation fault on concat
But apart from that, I'm wondering why you wouldn't do your string assignment some other (possibly simpler) way, such as:
or maybe:my $style_file = sprintf "%s/main/%s.xsl", $$config{dir}, $$config{sty +le};
my $style_file = join "/", $$config{dir}, 'main', "$$config{style}.xsl +";
|
|---|