cs136 / seashell

Seashell is an online environment for editing, running, and submitting C programming assignments.
GNU General Public License v3.0
38 stars 19 forks source link

Fix ASAN parser's stack frame regexp match pattern #593

Closed yc2lee closed 7 years ago

yc2lee commented 7 years ago

A couple more changes to go along with https://github.com/cs136/seashell/pull/590

This also fixes the example program

#include <stdio.h>

int g = -1;
int a[] = {0, 1, 2};

int main(void) {
  printf("%d\n", a[g]);
}
kpalway commented 7 years ago

Was that example program still broken? I thought I had fixed it with my last pull request.

yc2lee commented 7 years ago

No I think it was already fixed. I think I probably ran it on the live version