ImagingDataCommons / libdicom

C library for reading DICOM files
https://libdicom.readthedocs.io
MIT License
16 stars 7 forks source link

fix write beyond end of string #7

Closed jcupitt closed 3 years ago

jcupitt commented 3 years ago

dcm_file_read_file_meta() was writing 1 beyond the end of the string. Revise to use strdup() instead.

There are probably a few other places where strdup() would fit well.