mirror of https://github.com/gin-gonic/gin.git
fix: protect Context.Keys map when call Copy method (#3873)
This commit is contained in:
parent
5f458dd1a6
commit
646312aef6
|
@ -124,9 +124,11 @@ func (c *Context) Copy() *Context {
|
|||
|
||||
cKeys := c.Keys
|
||||
cp.Keys = make(map[string]any, len(cKeys))
|
||||
c.mu.RLock()
|
||||
for k, v := range cKeys {
|
||||
cp.Keys[k] = v
|
||||
}
|
||||
c.mu.RUnlock()
|
||||
|
||||
cParams := c.Params
|
||||
cp.Params = make([]Param, len(cParams))
|
||||
|
|
Loading…
Reference in New Issue