Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: Uninitialized global variable

2023-07-21 Thread Jayaprakash, N
] edk2-libc/StdLib: Uninitialized global variable Hi Mike, I was trying to explore with Co-authored-by tag as I simplified the patch with minor edits. If it doesn't work I shall remove it. I noticed after sending the patch. So I have sent V2 patch by removing the , in the names. I will go

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: Uninitialized global variable

2023-07-21 Thread Jayaprakash, N
Hi Mike, I was trying to explore with Co-authored-by tag as I simplified the patch with minor edits. If it doesn't work I shall remove it. I noticed after sending the patch. So I have sent V2 patch by removing the , in the names. I will go ahead and merge this change. Regards, JP

Re: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: Uninitialized global variable

2023-07-21 Thread Michael D Kinney
Hi JP, I have not seen co-authored-by tag used before. If Dimitry is the author, then please update git commit so Dimitry is the author and remove that tag. Also, please make sure that names do not contain ','. Should be: Dimity Kloper Thanks, Mike > -Original Message- > From:

[edk2-devel] [edk2-libc Patch 1/1] edk2-libc/StdLib: Uninitialized global variable

2023-07-21 Thread Jayaprakash, N
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4506 res_init() is called from different places in sockets library. It depends on global _res variable containing a state. The problem is that if __BIND_RES_TEXT macro is not defined, _res is not initialized. Depending on compiler and build