Re: [PATCH 2/2] debuginfod: ensure X-DEBUGINFOD-SIZE contains file size
Hi - > - add_mhd_response_header (r, "X-DEBUGINFOD-SIZE", > - to_string(fs.st_size).c_str()); > + rc = fstat (fd, &fs); > + if (rc == 0) > +add_mhd_response_header (r, "X-DEBUGINFOD-SIZE", > +
Re: [PATCH 2/2] debuginfod: ensure X-DEBUGINFOD-SIZE contains file size
Please ignore the "2/2" in the subject line, this patch is not part of a series. Aaron