BUG: DUMPBIN Displays Cumulative Data for Multiple ArgumentsLast reviewed: June 22, 1997Article ID: Q170171 |
The information in this article applies to:
SYMPTOMSDUMPBIN.EXE combines output data when more than one file is passed in as command line arguments. For example:
dumpbin myfile.exe myfile.dllwill show summary data for both files, rather than for each individual file.
RESOLUTIONTo prevent the combination of data, execute DUMPBIN on one file at a time.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATIONTo illustrate this problem, we're using two of the Source Profiler binaries, PREP.EXE and PROFILE.DLL. The output from "dumpbin prep.exe" (without the quotes):
Dump of file prep.exe File Type: EXECUTABLE IMAGE Summary 6000 .data 1000 .idata 1000 .rdata 4000 .rsrc D000 .textNow, the output from "dumpbin profile.dll":
Dump of file profile.dll File Type: DLL Summary B000 .data 1000 .idata 2000 .rdata 2000 .reloc 3000 .rsrc 10000 .textAnd finally, the output from "dumpbin prep.exe profile.dll":
Dump of file prep.exe File Type: EXECUTABLE IMAGE ? Dump of file profile.dll File Type: DLL Summary 11000 .data 2000 .idata 3000 .rdata 2000 .reloc 7000 .rsrc 1D000 .textNotice that each of the segment categories listed in the DUMPBIN output for both files is the sum of each individual file. |
Keywords : vcbuglist400 vcbuglist500
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |