commit | e25c84752c9df2bf3a999b53afb58e5bebaf3b7c | [log] [tgz] |
---|---|---|
author | Piotr Rudnicki <piotr.rudnicki@intel.com> | Wed Apr 09 15:17:31 2025 +0200 |
committer | Piotr Rudnicki <piotr.rudnicki@intel.com> | Mon Apr 14 11:42:54 2025 +0200 |
tree | 6182c394db62656f90e24b7c915b85163500ab85 | |
parent | 29b68e449be8816505487ef7cd5abde72ed21ca4 [diff] |
gdb: add check for empty array With the command before the change, gdb crashes with message: (gdb) p 1 == { } Fatal signal: Segmentation fault After the fix in this commit, gdb shows following message: (gdb) p 1 == { } size of the array element must not be zero Add new test cases to file gdb.base/printcmds.exp to test this change Approved-By: Tom Tromey <tom@tromey.com>