2007-01-15 23:50:36 +01:00
|
|
|
--- src/misc.c
|
|
|
|
+++ src/misc.c
|
2010-03-19 09:16:42 +01:00
|
|
|
@@ -696,7 +696,7 @@
|
2007-01-15 23:50:36 +01:00
|
|
|
olen = len+1;
|
|
|
|
out = malloc(olen);
|
|
|
|
if (!out) {
|
|
|
|
- wwarning(_("out of memory during expansion of \"%s\""));
|
|
|
|
+ wwarning(_("out of memory during expansion of \"%s\""), cmdline);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
*out = 0;
|
2010-03-19 09:16:42 +01:00
|
|
|
@@ -785,7 +785,8 @@
|
2007-01-15 23:50:36 +01:00
|
|
|
olen += slen;
|
|
|
|
nout = realloc(out,olen);
|
|
|
|
if (!nout) {
|
|
|
|
- wwarning(_("out of memory during expansion of \"%a\""));
|
|
|
|
+ wwarning(_("out of memory during expansion of \"%a\""),
|
|
|
|
+ user_input);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
out = nout;
|
2010-03-19 09:16:42 +01:00
|
|
|
@@ -835,7 +836,8 @@
|
2007-01-15 23:50:36 +01:00
|
|
|
olen += slen;
|
|
|
|
nout = realloc(out,olen);
|
|
|
|
if (!nout) {
|
|
|
|
- wwarning(_("out of memory during expansion of \"%s\""));
|
|
|
|
+ wwarning(_("out of memory during expansion of \"%s\""),
|
|
|
|
+ selection);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
out = nout;
|