From: Nicholas N. <nj...@ca...> - 2003-04-10 15:20:48
|
On Thu, 10 Apr 2003, Xiang Yan wrote: > I'm developing a server runing on linux, my environment is redhat ads, > gcc 2.96. Here are some results from valgrind 1.04, all functions > displayed are not mine:). How can I get more clues on cleaning? > > /// Valgrind 1.0.4 > ==32225== Conditional jump or move depends on uninitialised value(s) > ==32225== at 0x86823C2: CMP_Compare (in /home/xiang/test/m27/srv) > ==32225== by 0x8684660: CMP_ModularReduce (in /home/xiang/test/m27/srv) > ==32225== by 0x868DBA7: Alg_ComputeModQ_GHash (in /home/xiang/test/m27/srv) > ==32225== by 0x86686CA: A_X931RandomGenerateBytes (in /home/xiang/test/m27/srv) For a start, recompile the code in question with -g if you can, so you at least get line numbers in your error messages. N |