Bläddra i källkod

use the right pointer to insert the new command fix #12

prozessorkern 5 år sedan
förälder
incheckning
0b52a2f246
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      src/shellmatta.c

+ 1 - 1
src/shellmatta.c

@@ -166,7 +166,7 @@ shellmatta_retCode_t shellmatta_addCmd(shellmatta_handle_t handle, shellmatta_cm
                 {
                     /* nothing to do */
                 }
-                prevCmd = &tempCmd;
+                prevCmd = &(tempCmd->next);
                 tempCmd = tempCmd->next;
             }
         }