Displaying 4 results from an estimated 4 matches for "6ff30c6".
Did you mean:
63f930c6
2015 Oct 13
2
[PATCH 1/1] ldlinux: Fix return pointer to local data
...dn't be a problem as only one
command line can be read at a time.
Signed-off-by: Sylvain Gault <sylvain.gault at gmail.com>
---
com32/elflink/ldlinux/cli.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/com32/elflink/ldlinux/cli.c b/com32/elflink/ldlinux/cli.c
index 6ff30c6..3119b11 100644
--- a/com32/elflink/ldlinux/cli.c
+++ b/com32/elflink/ldlinux/cli.c
@@ -125,7 +125,7 @@ const char *edit_cmdline(const char *input, int top /*, int width */ ,
int (*pDraw_Menu) (int, int, int),
void (*show_fkey) (int), bool *timedout)
{
- char cmdline[MAX_CMDLINE_LEN]...
2015 Oct 16
0
[PATCH 1/1] ldlinux: Fix return pointer to local data
...d line can be read at a time.
>
> Signed-off-by: Sylvain Gault <sylvain.gault at gmail.com>
> ---
> com32/elflink/ldlinux/cli.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/com32/elflink/ldlinux/cli.c b/com32/elflink/ldlinux/cli.c
> index 6ff30c6..3119b11 100644
> --- a/com32/elflink/ldlinux/cli.c
> +++ b/com32/elflink/ldlinux/cli.c
> @@ -125,7 +125,7 @@ const char *edit_cmdline(const char *input, int top /*, int width */ ,
> int (*pDraw_Menu) (int, int, int),
> void (*show_fkey) (int), bool *timedout)
> {
>...
2015 Oct 19
0
ldlinux: Fix return pointer to local data
...;pomidorabelisima at gmail.com>
> Signed-off-by: Paulo Alcantara <pcacjr at zytor.com>
>
> ---
> com32/elflink/ldlinux/cli.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/com32/elflink/ldlinux/cli.c b/com32/elflink/ldlinux/cli.c
> index 6ff30c6..3119b11 100644
> --- a/com32/elflink/ldlinux/cli.c
> +++ b/com32/elflink/ldlinux/cli.c
> @@ -125,7 +125,7 @@ const char *edit_cmdline(const char *input, int top /*, int width */ ,
> int (*pDraw_Menu) (int, int, int),
> void (*show_fkey) (int), bool *timedout)
> {
>...
2013 Sep 17
1
[PATCH 4/4 v2] com32: Fix a bug on history of commands.
...twice. It also saves a bit of memory.
Signed-off-by: Raphael S.Carvalho <raphael.scarv at gmail.com>
---
com32/elflink/ldlinux/cli.c | 13 ++++++++-----
1 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/com32/elflink/ldlinux/cli.c b/com32/elflink/ldlinux/cli.c
index a50124c..6ff30c6 100644
--- a/com32/elflink/ldlinux/cli.c
+++ b/com32/elflink/ldlinux/cli.c
@@ -461,11 +461,14 @@ const char *edit_cmdline(const char *input, int top /*, int width */ ,
printf("\033[?7h");
- /* Add the command to the history */
- comm_counter = malloc(sizeof(struct cli_command...