git pull origin master致命的:AggregateExceptionが発生しました。



Git Pull Origin Master Fatal



// define the stack, initialize, sentenced to stack empty into the stack, the stack, read the top element #define Maxsize 50 typedef struct SqStack { char data[Maxsize] int top }SqStack typedef struct LinNode { int data struct LinNode* next }*LinStack // Initialize void Init(SqStack& S) { S.top = -1 } // sentenced to stack empty bool StackEmpty(SqStack& S) { if (S.top == -1) return true else return false } // push bool Push(SqStack& S,char x) { if (S.top == Maxsize - 1) return false S.data[++S.top] = x return true } // Stack bool Pop(SqStack& S, char& x) { if (S.top == -1) return false x=S.data[S.top--] return true } // read the top element char GetTop(SqStack& S) { if (S.top == -1) return false char x = S.data[S.top] return x }