Fix panic in CloseIO when not Stdin was allocated for a process
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
This commit is contained in:
		| @@ -330,8 +330,10 @@ func (s *Service) CloseIO(ctx context.Context, r *shimapi.CloseIORequest) (*goog | ||||
| 	if !ok { | ||||
| 		return nil, errdefs.ToGRPCf(errdefs.ErrNotFound, "process does not exist %s", r.ID) | ||||
| 	} | ||||
| 	if err := p.Stdin().Close(); err != nil { | ||||
| 		return nil, err | ||||
| 	if stdin := p.Stdin(); stdin != nil { | ||||
| 		if err := stdin.Close(); err != nil { | ||||
| 			return nil, errors.Wrap(err, "close stdin") | ||||
| 		} | ||||
| 	} | ||||
| 	return empty, nil | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Kenfe-Mickael Laventure
					Kenfe-Mickael Laventure