spreadsheet: Avoid sharing a dictionary between spreadsheet and client.
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 31 Jan 2016 20:28:54 +0000 (12:28 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 31 Jan 2016 20:29:18 +0000 (12:29 -0800)
Spreadsheet implementations keep a copy of the dictionary that they build
to simplify reading cases.  Until now, they shared that dictionary, in a
modifiable way, with their client.  This meant, however, that if the client
modified the dictionary, it could screw up reading further cases from the
spreadsheet.

This commit fixes the problem by forcing clients to make their own copy of
the dictionary if they want to modify it.

Bug #44158.


No differences found