diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2010-09-23 20:40:49 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2010-09-23 20:40:49 (GMT) |
commit | dd49fb904c957c9ff2bc55b2d6c62880d5decb30 (patch) | |
tree | 8cc675d40afb73093307897f7380b094a49b914b /src/H5Eint.c | |
parent | 48e1b5fad6b0f2e09e3f2ec0237723bf9e415b14 (diff) | |
download | hdf5-dd49fb904c957c9ff2bc55b2d6c62880d5decb30.zip hdf5-dd49fb904c957c9ff2bc55b2d6c62880d5decb30.tar.gz hdf5-dd49fb904c957c9ff2bc55b2d6c62880d5decb30.tar.bz2 |
[svn-r19475] I'm backing out my fix for bug 1707 because there're some unresolved issues - r19441 and 19467.
Bug 1707 is that H5Eset_auto causes a seg fault when an application uses -DH5_USE_16_API with
the 1.8 library to compile.
Tested on jam - backing out, simple.
Diffstat (limited to 'src/H5Eint.c')
-rw-r--r-- | src/H5Eint.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Eint.c b/src/H5Eint.c index eb8c140..3cdf549 100644 --- a/src/H5Eint.c +++ b/src/H5Eint.c @@ -1013,15 +1013,15 @@ H5E_dump_api_stack(int is_api) HDassert(estack); if(estack->auto_op.vers == 1) { #ifndef H5_NO_DEPRECATED_SYMBOLS - if(estack->auto_op.func1) - (void)((estack->auto_op.func1)(estack->auto_data)); + if(estack->auto_op.u.func1) + (void)((estack->auto_op.u.func1)(estack->auto_data)); #else /* H5_NO_DEPRECATED_SYMBOLS */ HDassert(0 && "version 1 error stack dump without deprecated symbols!"); #endif /* H5_NO_DEPRECATED_SYMBOLS */ } /* end if */ else { - if(estack->auto_op.func2) - (void)((estack->auto_op.func2)(H5E_DEFAULT, estack->auto_data)); + if(estack->auto_op.u.func2) + (void)((estack->auto_op.u.func2)(H5E_DEFAULT, estack->auto_data)); } /* end else */ } /* end if */ |