[commit] r2175 - trunk/GME/MgaUtil
GMESRC Repository Notifications
gme-commit at list.isis.vanderbilt.edu
Fri Apr 19 12:00:46 CDT 2013
Author: ksmyth
Date: Fri Apr 19 12:00:46 2013
New Revision: 2175
Log:
ISupportErrorInfo => SetErrorInfo must be called
Modified:
trunk/GME/MgaUtil/MgaRegistrar.cpp
Modified: trunk/GME/MgaUtil/MgaRegistrar.cpp
==============================================================================
--- trunk/GME/MgaUtil/MgaRegistrar.cpp Thu Apr 11 17:48:12 2013 (r2174)
+++ trunk/GME/MgaUtil/MgaRegistrar.cpp Fri Apr 19 12:00:46 2013 (r2175)
@@ -1607,7 +1607,11 @@
}
}
}
- if(!found) return(E_NOTFOUND);
+ if (!found)
+ {
+ SetErrorInfo(E_NOTFOUND);
+ return(E_NOTFOUND);
+ }
}
COMCATCH(;)
}
More information about the gme-commit
mailing list