Bug #17603 ยป ruby-rb_bug_without_die.patch
| error.c | ||
|---|---|---|
|
}
|
||
|
void
|
||
|
rb_bug_without_die(const char *fmt, ...)
|
||
|
rb_bug_without_die(const char *fmt, va_list args)
|
||
|
{
|
||
|
const char *file = NULL;
|
||
|
int line = 0;
|
||
| ... | ... | |
|
file = rb_source_location_cstr(&line);
|
||
|
}
|
||
|
report_bug(file, line, fmt, NULL);
|
||
|
report_bug_valist(file, line, fmt, NULL, args);
|
||
|
}
|
||
|
void
|
||