Commit bab7e140 authored by claes's avatar claes

Skip object of unknown klass instead of terminate

parent 276a04ab
/* /*
* Proview $Id: wb_print_wbl.cpp,v 1.16 2005-12-20 11:56:35 claes Exp $ * Proview $Id: wb_print_wbl.cpp,v 1.17 2006-05-24 15:02:03 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -396,6 +396,11 @@ void wb_print_wbl::printObject(wb_volume& v, wb_object& o, bool recursive) ...@@ -396,6 +396,11 @@ void wb_print_wbl::printObject(wb_volume& v, wb_object& o, bool recursive)
cdh_uObjid uid; cdh_uObjid uid;
unsigned int idx; unsigned int idx;
wb_cdef cdef = v.cdef(o); wb_cdef cdef = v.cdef(o);
if ( !cdef) {
m_os << "! %WBDUMP-E-Error Failed to get object class" << endl;
m_errCnt++;
return;
}
const char* cname = cdef.name(); const char* cname = cdef.name();
char *block; char *block;
int size; int size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment