aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/dc.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c
index f94d6fa6b..9c74172ba 100644
--- a/miscutils/dc.c
+++ b/miscutils/dc.c
@@ -56,6 +56,12 @@ enum { STACK_SIZE = (COMMON_BUFSIZE - offsetof(struct globals, stack)) / sizeof(
56} while (0) 56} while (0)
57 57
58 58
59static void check_under(void)
60{
61 if (pointer == 0)
62 bb_error_msg_and_die("stack underflow");
63}
64
59static void push(double a) 65static void push(double a)
60{ 66{
61 if (pointer >= STACK_SIZE) 67 if (pointer >= STACK_SIZE)
@@ -65,8 +71,7 @@ static void push(double a)
65 71
66static double pop(void) 72static double pop(void)
67{ 73{
68 if (pointer == 0) 74 check_under();
69 bb_error_msg_and_die("stack underflow");
70 return stack[--pointer]; 75 return stack[--pointer];
71} 76}
72 77
@@ -187,6 +192,7 @@ static void print_stack_no_pop(void)
187 192
188static void print_no_pop(void) 193static void print_no_pop(void)
189{ 194{
195 check_under();
190 print_base(stack[pointer-1]); 196 print_base(stack[pointer-1]);
191} 197}
192 198