| 1730 | */ |
| 1731 | |
| 1732 | static void PushState(CODE_STATE *cs) |
| 1733 | { |
| 1734 | struct settings *new_malloc; |
| 1735 | |
| 1736 | new_malloc= (struct settings *) DbugMalloc(sizeof(struct settings)); |
| 1737 | memset(new_malloc, 0, sizeof(struct settings)); |
| 1738 | new_malloc->next= cs->stack; |
| 1739 | cs->stack= new_malloc; |
| 1740 | } |
| 1741 | |
| 1742 | /* |
| 1743 | * FUNCTION |
no test coverage detected